From e5691f8b7e8728c3ff8365b22f043f427f7cd735 Mon Sep 17 00:00:00 2001 From: Jeff Date: Tue, 28 Nov 2023 12:04:32 -0500 Subject: [PATCH] Ignore tree sitter's generated files --- .gitignore | 1 + tree-sitter-dust/src/grammar.json | 1438 - tree-sitter-dust/src/node-types.json | 1096 - tree-sitter-dust/src/parser.c | 69560 -------------------- tree-sitter-dust/src/tree_sitter/parser.h | 224 - 5 files changed, 1 insertion(+), 72318 deletions(-) delete mode 100644 tree-sitter-dust/src/grammar.json delete mode 100644 tree-sitter-dust/src/node-types.json delete mode 100644 tree-sitter-dust/src/parser.c delete mode 100644 tree-sitter-dust/src/tree_sitter/parser.h diff --git a/.gitignore b/.gitignore index 297fdef..08ba768 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ target/ node_modules/ +tree_sitter_dust/src/ diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json deleted file mode 100644 index c162bec..0000000 --- a/tree-sitter-dust/src/grammar.json +++ /dev/null @@ -1,1438 +0,0 @@ -{ - "name": "dust", - "word": "identifier", - "rules": { - "root": { - "type": "SYMBOL", - "name": "block" - }, - "comment": { - "type": "PATTERN", - "value": "[#][^#\\n]*[#|\\n]" - }, - "block": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "statement" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "statement" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - } - }, - "statement": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "assignment" - }, - { - "type": "SYMBOL", - "name": "await" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "filter" - }, - { - "type": "SYMBOL", - "name": "find" - }, - { - "type": "SYMBOL", - "name": "for" - }, - { - "type": "SYMBOL", - "name": "if_else" - }, - { - "type": "SYMBOL", - "name": "insert" - }, - { - "type": "SYMBOL", - "name": "match" - }, - { - "type": "SYMBOL", - "name": "reduce" - }, - { - "type": "SYMBOL", - "name": "remove" - }, - { - "type": "SYMBOL", - "name": "select" - }, - { - "type": "SYMBOL", - "name": "transform" - }, - { - "type": "SYMBOL", - "name": "while" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "expression": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_kind" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expression_kind" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - }, - "_expression_kind": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_call" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "index" - }, - { - "type": "SYMBOL", - "name": "logic" - }, - { - "type": "SYMBOL", - "name": "math" - }, - { - "type": "SYMBOL", - "name": "value" - } - ] - } - }, - "_expression_list": { - "type": "REPEAT1", - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - }, - "identifier": { - "type": "PATTERN", - "value": "[_a-zA-Z]+[_a-zA-Z0-9]?" - }, - "value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "float" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "boolean" - }, - { - "type": "SYMBOL", - "name": "list" - }, - { - "type": "SYMBOL", - "name": "function" - }, - { - "type": "SYMBOL", - "name": "table" - }, - { - "type": "SYMBOL", - "name": "map" - }, - { - "type": "SYMBOL", - "name": "future" - } - ] - }, - "integer": { - "type": "TOKEN", - "content": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "2" - }, - { - "type": "STRING", - "value": "3" - }, - { - "type": "STRING", - "value": "4" - }, - { - "type": "STRING", - "value": "5" - }, - { - "type": "STRING", - "value": "6" - }, - { - "type": "STRING", - "value": "7" - }, - { - "type": "STRING", - "value": "8" - }, - { - "type": "STRING", - "value": "9" - }, - { - "type": "STRING", - "value": "0" - } - ] - } - } - ] - } - } - }, - "float": { - "type": "TOKEN", - "content": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "2" - }, - { - "type": "STRING", - "value": "3" - }, - { - "type": "STRING", - "value": "4" - }, - { - "type": "STRING", - "value": "5" - }, - { - "type": "STRING", - "value": "6" - }, - { - "type": "STRING", - "value": "7" - }, - { - "type": "STRING", - "value": "8" - }, - { - "type": "STRING", - "value": "9" - }, - { - "type": "STRING", - "value": "0" - } - ] - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "2" - }, - { - "type": "STRING", - "value": "3" - }, - { - "type": "STRING", - "value": "4" - }, - { - "type": "STRING", - "value": "5" - }, - { - "type": "STRING", - "value": "6" - }, - { - "type": "STRING", - "value": "7" - }, - { - "type": "STRING", - "value": "8" - }, - { - "type": "STRING", - "value": "9" - }, - { - "type": "STRING", - "value": "0" - } - ] - } - } - ] - } - } - }, - "string": { - "type": "PATTERN", - "value": "(\"[^\"]*?\")|('[^']*?')|(`[^`]*?`)" - }, - "boolean": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "REPEAT", - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "map": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "map" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "future": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "async" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "await": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "await" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_expression_list" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "index": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "math": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "math_operator" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, - "math_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "%" - } - ] - }, - "logic": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "logic_operator" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, - "logic_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "||" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "STRING", - "value": "<=" - } - ] - }, - "assignment": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "assignment_operator" - }, - { - "type": "SYMBOL", - "name": "statement" - } - ] - }, - "assignment_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - } - ] - }, - "if_else": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "if" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "else_if" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "if": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "else_if": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else if" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "else": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "match": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "=>" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - } - } - ] - } - }, - "while": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "for": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "transform": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "transform" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "filter": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "filter" - }, - { - "type": "FIELD", - "name": "count", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "statement_id", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "collection", - "content": { - "type": "SYMBOL", - "name": "expression" - } - }, - { - "type": "FIELD", - "name": "predicate", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "find": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "find" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "remove": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "remove" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "from" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "reduce": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "reduce" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "to" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "select": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "select" - }, - { - "type": "SYMBOL", - "name": "identifier_list" - }, - { - "type": "STRING", - "value": "from" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "insert": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "insert" - }, - { - "type": "STRING", - "value": "into" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, - "identifier_list": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "|" - } - ] - } - ] - } - }, - "table": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "table" - }, - { - "type": "SYMBOL", - "name": "identifier_list" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, - "function": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier_list" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "STRING", - "value": "=>" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "function_call": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "built_in_function" - }, - { - "type": "SYMBOL", - "name": "_context_defined_function" - } - ] - }, - "_context_defined_function": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_list" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "built_in_function": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_built_in_function_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_list" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_built_in_function_name": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "assert" - }, - { - "type": "STRING", - "value": "assert_equal" - }, - { - "type": "STRING", - "value": "download" - }, - { - "type": "STRING", - "value": "help" - }, - { - "type": "STRING", - "value": "length" - }, - { - "type": "STRING", - "value": "output" - }, - { - "type": "STRING", - "value": "output_error" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "STRING", - "value": "append" - }, - { - "type": "STRING", - "value": "metadata" - }, - { - "type": "STRING", - "value": "move" - }, - { - "type": "STRING", - "value": "read" - }, - { - "type": "STRING", - "value": "workdir" - }, - { - "type": "STRING", - "value": "write" - }, - { - "type": "STRING", - "value": "from_json" - }, - { - "type": "STRING", - "value": "to_json" - }, - { - "type": "STRING", - "value": "to_string" - }, - { - "type": "STRING", - "value": "to_float" - }, - { - "type": "STRING", - "value": "bash" - }, - { - "type": "STRING", - "value": "fish" - }, - { - "type": "STRING", - "value": "raw" - }, - { - "type": "STRING", - "value": "sh" - }, - { - "type": "STRING", - "value": "zsh" - }, - { - "type": "STRING", - "value": "random" - }, - { - "type": "STRING", - "value": "random_boolean" - }, - { - "type": "STRING", - "value": "random_float" - }, - { - "type": "STRING", - "value": "random_integer" - }, - { - "type": "STRING", - "value": "columns" - }, - { - "type": "STRING", - "value": "rows" - }, - { - "type": "STRING", - "value": "reverse" - } - ] - } - }, - "extras": [ - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "SYMBOL", - "name": "comment" - } - ], - "conflicts": [ - [ - "block" - ] - ], - "precedences": [], - "externals": [], - "inline": [], - "supertypes": [] -} - diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json deleted file mode 100644 index 9393379..0000000 --- a/tree-sitter-dust/src/node-types.json +++ /dev/null @@ -1,1096 +0,0 @@ -[ - { - "type": "assignment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "assignment_operator", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "statement", - "named": true - } - ] - } - }, - { - "type": "assignment_operator", - "named": true, - "fields": {} - }, - { - "type": "await", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "statement", - "named": true - } - ] - } - }, - { - "type": "boolean", - "named": true, - "fields": {} - }, - { - "type": "built_in_function", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "else", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "else_if", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "index", - "named": true - }, - { - "type": "logic", - "named": true - }, - { - "type": "math", - "named": true - }, - { - "type": "value", - "named": true - } - ] - } - }, - { - "type": "filter", - "named": true, - "fields": { - "collection": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - }, - "count": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expression", - "named": true - } - ] - }, - "predicate": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "statement_id": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - } - }, - { - "type": "find", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "for", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier_list", - "named": true - } - ] - } - } - }, - { - "type": "function_call", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "built_in_function", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "future", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "identifier_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "if", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "if_else", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "else", - "named": true - }, - { - "type": "else_if", - "named": true - }, - { - "type": "if", - "named": true - } - ] - } - }, - { - "type": "index", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "insert", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "logic", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "logic_operator", - "named": true - } - ] - } - }, - { - "type": "logic_operator", - "named": true, - "fields": {} - }, - { - "type": "map", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "match", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "math", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "math_operator", - "named": true - } - ] - } - }, - { - "type": "math_operator", - "named": true, - "fields": {} - }, - { - "type": "reduce", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "remove", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "root", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "select", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier_list", - "named": true - } - ] - } - }, - { - "type": "statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "assignment", - "named": true - }, - { - "type": "await", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "filter", - "named": true - }, - { - "type": "find", - "named": true - }, - { - "type": "for", - "named": true - }, - { - "type": "if_else", - "named": true - }, - { - "type": "insert", - "named": true - }, - { - "type": "match", - "named": true - }, - { - "type": "reduce", - "named": true - }, - { - "type": "remove", - "named": true - }, - { - "type": "select", - "named": true - }, - { - "type": "transform", - "named": true - }, - { - "type": "while", - "named": true - } - ] - } - }, - { - "type": "table", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "identifier_list", - "named": true - } - ] - } - }, - { - "type": "transform", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "value", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "boolean", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function", - "named": true - }, - { - "type": "future", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "map", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "table", - "named": true - } - ] - } - }, - { - "type": "while", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "!=", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "..", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "=>", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "append", - "named": false - }, - { - "type": "assert", - "named": false - }, - { - "type": "assert_equal", - "named": false - }, - { - "type": "async", - "named": false - }, - { - "type": "await", - "named": false - }, - { - "type": "bash", - "named": false - }, - { - "type": "columns", - "named": false - }, - { - "type": "comment", - "named": true - }, - { - "type": "download", - "named": false - }, - { - "type": "else", - "named": false - }, - { - "type": "else if", - "named": false - }, - { - "type": "false", - "named": false - }, - { - "type": "filter", - "named": false - }, - { - "type": "find", - "named": false - }, - { - "type": "fish", - "named": false - }, - { - "type": "float", - "named": true - }, - { - "type": "for", - "named": false - }, - { - "type": "from", - "named": false - }, - { - "type": "from_json", - "named": false - }, - { - "type": "help", - "named": false - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "insert", - "named": false - }, - { - "type": "integer", - "named": true - }, - { - "type": "into", - "named": false - }, - { - "type": "length", - "named": false - }, - { - "type": "map", - "named": false - }, - { - "type": "match", - "named": false - }, - { - "type": "metadata", - "named": false - }, - { - "type": "move", - "named": false - }, - { - "type": "output", - "named": false - }, - { - "type": "output_error", - "named": false - }, - { - "type": "random", - "named": false - }, - { - "type": "random_boolean", - "named": false - }, - { - "type": "random_float", - "named": false - }, - { - "type": "random_integer", - "named": false - }, - { - "type": "raw", - "named": false - }, - { - "type": "read", - "named": false - }, - { - "type": "reduce", - "named": false - }, - { - "type": "remove", - "named": false - }, - { - "type": "reverse", - "named": false - }, - { - "type": "rows", - "named": false - }, - { - "type": "select", - "named": false - }, - { - "type": "sh", - "named": false - }, - { - "type": "string", - "named": true - }, - { - "type": "table", - "named": false - }, - { - "type": "to", - "named": false - }, - { - "type": "to_float", - "named": false - }, - { - "type": "to_json", - "named": false - }, - { - "type": "to_string", - "named": false - }, - { - "type": "transform", - "named": false - }, - { - "type": "true", - "named": false - }, - { - "type": "type", - "named": false - }, - { - "type": "while", - "named": false - }, - { - "type": "workdir", - "named": false - }, - { - "type": "write", - "named": false - }, - { - "type": "zsh", - "named": false - }, - { - "type": "{", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - } -] \ No newline at end of file diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c deleted file mode 100644 index d645267..0000000 --- a/tree-sitter-dust/src/parser.c +++ /dev/null @@ -1,69560 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 971 -#define LARGE_STATE_COUNT 438 -#define SYMBOL_COUNT 132 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 87 -#define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 6 -#define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 5 - -enum { - sym_identifier = 1, - sym_comment = 2, - anon_sym_LBRACE = 3, - anon_sym_RBRACE = 4, - anon_sym_SEMI = 5, - anon_sym_LPAREN = 6, - anon_sym_RPAREN = 7, - anon_sym_COMMA = 8, - sym_integer = 9, - sym_float = 10, - sym_string = 11, - anon_sym_true = 12, - anon_sym_false = 13, - anon_sym_LBRACK = 14, - anon_sym_RBRACK = 15, - anon_sym_map = 16, - anon_sym_async = 17, - anon_sym_await = 18, - anon_sym_COLON = 19, - anon_sym_DOT_DOT = 20, - anon_sym_PLUS = 21, - anon_sym_DASH = 22, - anon_sym_STAR = 23, - anon_sym_SLASH = 24, - anon_sym_PERCENT = 25, - anon_sym_EQ_EQ = 26, - anon_sym_BANG_EQ = 27, - anon_sym_AMP_AMP = 28, - anon_sym_PIPE_PIPE = 29, - anon_sym_GT = 30, - anon_sym_LT = 31, - anon_sym_GT_EQ = 32, - anon_sym_LT_EQ = 33, - anon_sym_EQ = 34, - anon_sym_PLUS_EQ = 35, - anon_sym_DASH_EQ = 36, - anon_sym_if = 37, - anon_sym_elseif = 38, - anon_sym_else = 39, - anon_sym_match = 40, - anon_sym_EQ_GT = 41, - anon_sym_while = 42, - anon_sym_for = 43, - anon_sym_in = 44, - anon_sym_transform = 45, - anon_sym_filter = 46, - anon_sym_find = 47, - anon_sym_remove = 48, - anon_sym_from = 49, - anon_sym_reduce = 50, - anon_sym_to = 51, - anon_sym_select = 52, - anon_sym_insert = 53, - anon_sym_into = 54, - anon_sym_PIPE = 55, - anon_sym_table = 56, - anon_sym_assert = 57, - anon_sym_assert_equal = 58, - anon_sym_download = 59, - anon_sym_help = 60, - anon_sym_length = 61, - anon_sym_output = 62, - anon_sym_output_error = 63, - anon_sym_type = 64, - anon_sym_append = 65, - anon_sym_metadata = 66, - anon_sym_move = 67, - anon_sym_read = 68, - anon_sym_workdir = 69, - anon_sym_write = 70, - anon_sym_from_json = 71, - anon_sym_to_json = 72, - anon_sym_to_string = 73, - anon_sym_to_float = 74, - anon_sym_bash = 75, - anon_sym_fish = 76, - anon_sym_raw = 77, - anon_sym_sh = 78, - anon_sym_zsh = 79, - anon_sym_random = 80, - anon_sym_random_boolean = 81, - anon_sym_random_float = 82, - anon_sym_random_integer = 83, - anon_sym_columns = 84, - anon_sym_rows = 85, - anon_sym_reverse = 86, - sym_root = 87, - sym_block = 88, - sym_statement = 89, - sym_expression = 90, - sym__expression_kind = 91, - aux_sym__expression_list = 92, - sym_value = 93, - sym_boolean = 94, - sym_list = 95, - sym_map = 96, - sym_future = 97, - sym_await = 98, - sym_index = 99, - sym_math = 100, - sym_math_operator = 101, - sym_logic = 102, - sym_logic_operator = 103, - sym_assignment = 104, - sym_assignment_operator = 105, - sym_if_else = 106, - sym_if = 107, - sym_else_if = 108, - sym_else = 109, - sym_match = 110, - sym_while = 111, - sym_for = 112, - sym_transform = 113, - sym_filter = 114, - sym_find = 115, - sym_remove = 116, - sym_reduce = 117, - sym_select = 118, - sym_insert = 119, - sym_identifier_list = 120, - sym_table = 121, - sym_function = 122, - sym_function_call = 123, - sym__context_defined_function = 124, - sym_built_in_function = 125, - sym__built_in_function_name = 126, - aux_sym_block_repeat1 = 127, - aux_sym_list_repeat1 = 128, - aux_sym_if_else_repeat1 = 129, - aux_sym_match_repeat1 = 130, - aux_sym_identifier_list_repeat1 = 131, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_identifier] = "identifier", - [sym_comment] = "comment", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [anon_sym_SEMI] = ";", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_COMMA] = ",", - [sym_integer] = "integer", - [sym_float] = "float", - [sym_string] = "string", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_map] = "map", - [anon_sym_async] = "async", - [anon_sym_await] = "await", - [anon_sym_COLON] = ":", - [anon_sym_DOT_DOT] = "..", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_GT] = ">", - [anon_sym_LT] = "<", - [anon_sym_GT_EQ] = ">=", - [anon_sym_LT_EQ] = "<=", - [anon_sym_EQ] = "=", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_if] = "if", - [anon_sym_elseif] = "else if", - [anon_sym_else] = "else", - [anon_sym_match] = "match", - [anon_sym_EQ_GT] = "=>", - [anon_sym_while] = "while", - [anon_sym_for] = "for", - [anon_sym_in] = "in", - [anon_sym_transform] = "transform", - [anon_sym_filter] = "filter", - [anon_sym_find] = "find", - [anon_sym_remove] = "remove", - [anon_sym_from] = "from", - [anon_sym_reduce] = "reduce", - [anon_sym_to] = "to", - [anon_sym_select] = "select", - [anon_sym_insert] = "insert", - [anon_sym_into] = "into", - [anon_sym_PIPE] = "|", - [anon_sym_table] = "table", - [anon_sym_assert] = "assert", - [anon_sym_assert_equal] = "assert_equal", - [anon_sym_download] = "download", - [anon_sym_help] = "help", - [anon_sym_length] = "length", - [anon_sym_output] = "output", - [anon_sym_output_error] = "output_error", - [anon_sym_type] = "type", - [anon_sym_append] = "append", - [anon_sym_metadata] = "metadata", - [anon_sym_move] = "move", - [anon_sym_read] = "read", - [anon_sym_workdir] = "workdir", - [anon_sym_write] = "write", - [anon_sym_from_json] = "from_json", - [anon_sym_to_json] = "to_json", - [anon_sym_to_string] = "to_string", - [anon_sym_to_float] = "to_float", - [anon_sym_bash] = "bash", - [anon_sym_fish] = "fish", - [anon_sym_raw] = "raw", - [anon_sym_sh] = "sh", - [anon_sym_zsh] = "zsh", - [anon_sym_random] = "random", - [anon_sym_random_boolean] = "random_boolean", - [anon_sym_random_float] = "random_float", - [anon_sym_random_integer] = "random_integer", - [anon_sym_columns] = "columns", - [anon_sym_rows] = "rows", - [anon_sym_reverse] = "reverse", - [sym_root] = "root", - [sym_block] = "block", - [sym_statement] = "statement", - [sym_expression] = "expression", - [sym__expression_kind] = "_expression_kind", - [aux_sym__expression_list] = "_expression_list", - [sym_value] = "value", - [sym_boolean] = "boolean", - [sym_list] = "list", - [sym_map] = "map", - [sym_future] = "future", - [sym_await] = "await", - [sym_index] = "index", - [sym_math] = "math", - [sym_math_operator] = "math_operator", - [sym_logic] = "logic", - [sym_logic_operator] = "logic_operator", - [sym_assignment] = "assignment", - [sym_assignment_operator] = "assignment_operator", - [sym_if_else] = "if_else", - [sym_if] = "if", - [sym_else_if] = "else_if", - [sym_else] = "else", - [sym_match] = "match", - [sym_while] = "while", - [sym_for] = "for", - [sym_transform] = "transform", - [sym_filter] = "filter", - [sym_find] = "find", - [sym_remove] = "remove", - [sym_reduce] = "reduce", - [sym_select] = "select", - [sym_insert] = "insert", - [sym_identifier_list] = "identifier_list", - [sym_table] = "table", - [sym_function] = "function", - [sym_function_call] = "function_call", - [sym__context_defined_function] = "_context_defined_function", - [sym_built_in_function] = "built_in_function", - [sym__built_in_function_name] = "_built_in_function_name", - [aux_sym_block_repeat1] = "block_repeat1", - [aux_sym_list_repeat1] = "list_repeat1", - [aux_sym_if_else_repeat1] = "if_else_repeat1", - [aux_sym_match_repeat1] = "match_repeat1", - [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_identifier] = sym_identifier, - [sym_comment] = sym_comment, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_COMMA] = anon_sym_COMMA, - [sym_integer] = sym_integer, - [sym_float] = sym_float, - [sym_string] = sym_string, - [anon_sym_true] = anon_sym_true, - [anon_sym_false] = anon_sym_false, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_map] = anon_sym_map, - [anon_sym_async] = anon_sym_async, - [anon_sym_await] = anon_sym_await, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_if] = anon_sym_if, - [anon_sym_elseif] = anon_sym_elseif, - [anon_sym_else] = anon_sym_else, - [anon_sym_match] = anon_sym_match, - [anon_sym_EQ_GT] = anon_sym_EQ_GT, - [anon_sym_while] = anon_sym_while, - [anon_sym_for] = anon_sym_for, - [anon_sym_in] = anon_sym_in, - [anon_sym_transform] = anon_sym_transform, - [anon_sym_filter] = anon_sym_filter, - [anon_sym_find] = anon_sym_find, - [anon_sym_remove] = anon_sym_remove, - [anon_sym_from] = anon_sym_from, - [anon_sym_reduce] = anon_sym_reduce, - [anon_sym_to] = anon_sym_to, - [anon_sym_select] = anon_sym_select, - [anon_sym_insert] = anon_sym_insert, - [anon_sym_into] = anon_sym_into, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_table] = anon_sym_table, - [anon_sym_assert] = anon_sym_assert, - [anon_sym_assert_equal] = anon_sym_assert_equal, - [anon_sym_download] = anon_sym_download, - [anon_sym_help] = anon_sym_help, - [anon_sym_length] = anon_sym_length, - [anon_sym_output] = anon_sym_output, - [anon_sym_output_error] = anon_sym_output_error, - [anon_sym_type] = anon_sym_type, - [anon_sym_append] = anon_sym_append, - [anon_sym_metadata] = anon_sym_metadata, - [anon_sym_move] = anon_sym_move, - [anon_sym_read] = anon_sym_read, - [anon_sym_workdir] = anon_sym_workdir, - [anon_sym_write] = anon_sym_write, - [anon_sym_from_json] = anon_sym_from_json, - [anon_sym_to_json] = anon_sym_to_json, - [anon_sym_to_string] = anon_sym_to_string, - [anon_sym_to_float] = anon_sym_to_float, - [anon_sym_bash] = anon_sym_bash, - [anon_sym_fish] = anon_sym_fish, - [anon_sym_raw] = anon_sym_raw, - [anon_sym_sh] = anon_sym_sh, - [anon_sym_zsh] = anon_sym_zsh, - [anon_sym_random] = anon_sym_random, - [anon_sym_random_boolean] = anon_sym_random_boolean, - [anon_sym_random_float] = anon_sym_random_float, - [anon_sym_random_integer] = anon_sym_random_integer, - [anon_sym_columns] = anon_sym_columns, - [anon_sym_rows] = anon_sym_rows, - [anon_sym_reverse] = anon_sym_reverse, - [sym_root] = sym_root, - [sym_block] = sym_block, - [sym_statement] = sym_statement, - [sym_expression] = sym_expression, - [sym__expression_kind] = sym__expression_kind, - [aux_sym__expression_list] = aux_sym__expression_list, - [sym_value] = sym_value, - [sym_boolean] = sym_boolean, - [sym_list] = sym_list, - [sym_map] = sym_map, - [sym_future] = sym_future, - [sym_await] = sym_await, - [sym_index] = sym_index, - [sym_math] = sym_math, - [sym_math_operator] = sym_math_operator, - [sym_logic] = sym_logic, - [sym_logic_operator] = sym_logic_operator, - [sym_assignment] = sym_assignment, - [sym_assignment_operator] = sym_assignment_operator, - [sym_if_else] = sym_if_else, - [sym_if] = sym_if, - [sym_else_if] = sym_else_if, - [sym_else] = sym_else, - [sym_match] = sym_match, - [sym_while] = sym_while, - [sym_for] = sym_for, - [sym_transform] = sym_transform, - [sym_filter] = sym_filter, - [sym_find] = sym_find, - [sym_remove] = sym_remove, - [sym_reduce] = sym_reduce, - [sym_select] = sym_select, - [sym_insert] = sym_insert, - [sym_identifier_list] = sym_identifier_list, - [sym_table] = sym_table, - [sym_function] = sym_function, - [sym_function_call] = sym_function_call, - [sym__context_defined_function] = sym__context_defined_function, - [sym_built_in_function] = sym_built_in_function, - [sym__built_in_function_name] = sym__built_in_function_name, - [aux_sym_block_repeat1] = aux_sym_block_repeat1, - [aux_sym_list_repeat1] = aux_sym_list_repeat1, - [aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1, - [aux_sym_match_repeat1] = aux_sym_match_repeat1, - [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_identifier] = { - .visible = true, - .named = true, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [sym_integer] = { - .visible = true, - .named = true, - }, - [sym_float] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_map] = { - .visible = true, - .named = false, - }, - [anon_sym_async] = { - .visible = true, - .named = false, - }, - [anon_sym_await] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_elseif] = { - .visible = true, - .named = false, - }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, - [anon_sym_match] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_transform] = { - .visible = true, - .named = false, - }, - [anon_sym_filter] = { - .visible = true, - .named = false, - }, - [anon_sym_find] = { - .visible = true, - .named = false, - }, - [anon_sym_remove] = { - .visible = true, - .named = false, - }, - [anon_sym_from] = { - .visible = true, - .named = false, - }, - [anon_sym_reduce] = { - .visible = true, - .named = false, - }, - [anon_sym_to] = { - .visible = true, - .named = false, - }, - [anon_sym_select] = { - .visible = true, - .named = false, - }, - [anon_sym_insert] = { - .visible = true, - .named = false, - }, - [anon_sym_into] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_table] = { - .visible = true, - .named = false, - }, - [anon_sym_assert] = { - .visible = true, - .named = false, - }, - [anon_sym_assert_equal] = { - .visible = true, - .named = false, - }, - [anon_sym_download] = { - .visible = true, - .named = false, - }, - [anon_sym_help] = { - .visible = true, - .named = false, - }, - [anon_sym_length] = { - .visible = true, - .named = false, - }, - [anon_sym_output] = { - .visible = true, - .named = false, - }, - [anon_sym_output_error] = { - .visible = true, - .named = false, - }, - [anon_sym_type] = { - .visible = true, - .named = false, - }, - [anon_sym_append] = { - .visible = true, - .named = false, - }, - [anon_sym_metadata] = { - .visible = true, - .named = false, - }, - [anon_sym_move] = { - .visible = true, - .named = false, - }, - [anon_sym_read] = { - .visible = true, - .named = false, - }, - [anon_sym_workdir] = { - .visible = true, - .named = false, - }, - [anon_sym_write] = { - .visible = true, - .named = false, - }, - [anon_sym_from_json] = { - .visible = true, - .named = false, - }, - [anon_sym_to_json] = { - .visible = true, - .named = false, - }, - [anon_sym_to_string] = { - .visible = true, - .named = false, - }, - [anon_sym_to_float] = { - .visible = true, - .named = false, - }, - [anon_sym_bash] = { - .visible = true, - .named = false, - }, - [anon_sym_fish] = { - .visible = true, - .named = false, - }, - [anon_sym_raw] = { - .visible = true, - .named = false, - }, - [anon_sym_sh] = { - .visible = true, - .named = false, - }, - [anon_sym_zsh] = { - .visible = true, - .named = false, - }, - [anon_sym_random] = { - .visible = true, - .named = false, - }, - [anon_sym_random_boolean] = { - .visible = true, - .named = false, - }, - [anon_sym_random_float] = { - .visible = true, - .named = false, - }, - [anon_sym_random_integer] = { - .visible = true, - .named = false, - }, - [anon_sym_columns] = { - .visible = true, - .named = false, - }, - [anon_sym_rows] = { - .visible = true, - .named = false, - }, - [anon_sym_reverse] = { - .visible = true, - .named = false, - }, - [sym_root] = { - .visible = true, - .named = true, - }, - [sym_block] = { - .visible = true, - .named = true, - }, - [sym_statement] = { - .visible = true, - .named = true, - }, - [sym_expression] = { - .visible = true, - .named = true, - }, - [sym__expression_kind] = { - .visible = false, - .named = true, - }, - [aux_sym__expression_list] = { - .visible = false, - .named = false, - }, - [sym_value] = { - .visible = true, - .named = true, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, - [sym_list] = { - .visible = true, - .named = true, - }, - [sym_map] = { - .visible = true, - .named = true, - }, - [sym_future] = { - .visible = true, - .named = true, - }, - [sym_await] = { - .visible = true, - .named = true, - }, - [sym_index] = { - .visible = true, - .named = true, - }, - [sym_math] = { - .visible = true, - .named = true, - }, - [sym_math_operator] = { - .visible = true, - .named = true, - }, - [sym_logic] = { - .visible = true, - .named = true, - }, - [sym_logic_operator] = { - .visible = true, - .named = true, - }, - [sym_assignment] = { - .visible = true, - .named = true, - }, - [sym_assignment_operator] = { - .visible = true, - .named = true, - }, - [sym_if_else] = { - .visible = true, - .named = true, - }, - [sym_if] = { - .visible = true, - .named = true, - }, - [sym_else_if] = { - .visible = true, - .named = true, - }, - [sym_else] = { - .visible = true, - .named = true, - }, - [sym_match] = { - .visible = true, - .named = true, - }, - [sym_while] = { - .visible = true, - .named = true, - }, - [sym_for] = { - .visible = true, - .named = true, - }, - [sym_transform] = { - .visible = true, - .named = true, - }, - [sym_filter] = { - .visible = true, - .named = true, - }, - [sym_find] = { - .visible = true, - .named = true, - }, - [sym_remove] = { - .visible = true, - .named = true, - }, - [sym_reduce] = { - .visible = true, - .named = true, - }, - [sym_select] = { - .visible = true, - .named = true, - }, - [sym_insert] = { - .visible = true, - .named = true, - }, - [sym_identifier_list] = { - .visible = true, - .named = true, - }, - [sym_table] = { - .visible = true, - .named = true, - }, - [sym_function] = { - .visible = true, - .named = true, - }, - [sym_function_call] = { - .visible = true, - .named = true, - }, - [sym__context_defined_function] = { - .visible = false, - .named = true, - }, - [sym_built_in_function] = { - .visible = true, - .named = true, - }, - [sym__built_in_function_name] = { - .visible = false, - .named = true, - }, - [aux_sym_block_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_else_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_match_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_identifier_list_repeat1] = { - .visible = false, - .named = false, - }, -}; - -enum { - field_body = 1, - field_collection = 2, - field_count = 3, - field_parameters = 4, - field_predicate = 5, - field_statement_id = 6, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_body] = "body", - [field_collection] = "collection", - [field_count] = "count", - [field_parameters] = "parameters", - [field_predicate] = "predicate", - [field_statement_id] = "statement_id", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 2}, - [3] = {.index = 3, .length = 3}, - [4] = {.index = 6, .length = 4}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_body, 1}, - [1] = - {field_body, 2}, - {field_parameters, 0}, - [3] = - {field_collection, 3}, - {field_predicate, 4}, - {field_statement_id, 1}, - [6] = - {field_collection, 4}, - {field_count, 1}, - {field_predicate, 5}, - {field_statement_id, 2}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, - [6] = 2, - [7] = 7, - [8] = 2, - [9] = 9, - [10] = 2, - [11] = 7, - [12] = 9, - [13] = 2, - [14] = 2, - [15] = 7, - [16] = 9, - [17] = 7, - [18] = 9, - [19] = 2, - [20] = 9, - [21] = 7, - [22] = 9, - [23] = 7, - [24] = 9, - [25] = 7, - [26] = 9, - [27] = 7, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 29, - [34] = 34, - [35] = 29, - [36] = 28, - [37] = 34, - [38] = 31, - [39] = 32, - [40] = 40, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 30, - [45] = 32, - [46] = 29, - [47] = 34, - [48] = 31, - [49] = 40, - [50] = 41, - [51] = 32, - [52] = 30, - [53] = 43, - [54] = 43, - [55] = 42, - [56] = 30, - [57] = 32, - [58] = 42, - [59] = 32, - [60] = 41, - [61] = 40, - [62] = 29, - [63] = 32, - [64] = 34, - [65] = 29, - [66] = 34, - [67] = 31, - [68] = 28, - [69] = 40, - [70] = 41, - [71] = 42, - [72] = 43, - [73] = 31, - [74] = 31, - [75] = 40, - [76] = 41, - [77] = 34, - [78] = 30, - [79] = 31, - [80] = 40, - [81] = 41, - [82] = 43, - [83] = 30, - [84] = 43, - [85] = 30, - [86] = 43, - [87] = 34, - [88] = 29, - [89] = 32, - [90] = 32, - [91] = 42, - [92] = 43, - [93] = 32, - [94] = 29, - [95] = 34, - [96] = 28, - [97] = 29, - [98] = 34, - [99] = 31, - [100] = 31, - [101] = 41, - [102] = 40, - [103] = 40, - [104] = 40, - [105] = 30, - [106] = 41, - [107] = 40, - [108] = 28, - [109] = 31, - [110] = 43, - [111] = 30, - [112] = 43, - [113] = 41, - [114] = 30, - [115] = 41, - [116] = 29, - [117] = 34, - [118] = 118, - [119] = 118, - [120] = 118, - [121] = 118, - [122] = 118, - [123] = 118, - [124] = 118, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 129, - [132] = 118, - [133] = 126, - [134] = 118, - [135] = 127, - [136] = 130, - [137] = 125, - [138] = 128, - [139] = 129, - [140] = 130, - [141] = 127, - [142] = 127, - [143] = 125, - [144] = 129, - [145] = 126, - [146] = 128, - [147] = 126, - [148] = 125, - [149] = 128, - [150] = 130, - [151] = 130, - [152] = 128, - [153] = 125, - [154] = 127, - [155] = 126, - [156] = 126, - [157] = 128, - [158] = 129, - [159] = 129, - [160] = 118, - [161] = 127, - [162] = 125, - [163] = 130, - [164] = 127, - [165] = 125, - [166] = 129, - [167] = 126, - [168] = 128, - [169] = 130, - [170] = 7, - [171] = 9, - [172] = 125, - [173] = 127, - [174] = 128, - [175] = 130, - [176] = 126, - [177] = 129, - [178] = 9, - [179] = 7, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 184, - [185] = 182, - [186] = 183, - [187] = 184, - [188] = 182, - [189] = 183, - [190] = 184, - [191] = 191, - [192] = 181, - [193] = 180, - [194] = 183, - [195] = 191, - [196] = 181, - [197] = 180, - [198] = 182, - [199] = 184, - [200] = 191, - [201] = 181, - [202] = 180, - [203] = 183, - [204] = 184, - [205] = 183, - [206] = 182, - [207] = 182, - [208] = 184, - [209] = 182, - [210] = 181, - [211] = 183, - [212] = 183, - [213] = 191, - [214] = 180, - [215] = 181, - [216] = 191, - [217] = 184, - [218] = 180, - [219] = 181, - [220] = 183, - [221] = 191, - [222] = 184, - [223] = 181, - [224] = 182, - [225] = 183, - [226] = 184, - [227] = 180, - [228] = 191, - [229] = 191, - [230] = 181, - [231] = 180, - [232] = 191, - [233] = 180, - [234] = 182, - [235] = 182, - [236] = 184, - [237] = 180, - [238] = 191, - [239] = 181, - [240] = 240, - [241] = 240, - [242] = 240, - [243] = 240, - [244] = 240, - [245] = 245, - [246] = 245, - [247] = 245, - [248] = 245, - [249] = 245, - [250] = 250, - [251] = 250, - [252] = 250, - [253] = 250, - [254] = 250, - [255] = 250, - [256] = 250, - [257] = 250, - [258] = 250, - [259] = 250, - [260] = 260, - [261] = 261, - [262] = 261, - [263] = 260, - [264] = 261, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 260, - [272] = 272, - [273] = 272, - [274] = 274, - [275] = 275, - [276] = 260, - [277] = 261, - [278] = 267, - [279] = 269, - [280] = 260, - [281] = 261, - [282] = 260, - [283] = 261, - [284] = 265, - [285] = 274, - [286] = 268, - [287] = 266, - [288] = 269, - [289] = 275, - [290] = 270, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 267, - [299] = 270, - [300] = 270, - [301] = 301, - [302] = 275, - [303] = 303, - [304] = 267, - [305] = 265, - [306] = 265, - [307] = 274, - [308] = 272, - [309] = 272, - [310] = 260, - [311] = 311, - [312] = 312, - [313] = 268, - [314] = 266, - [315] = 315, - [316] = 272, - [317] = 317, - [318] = 261, - [319] = 319, - [320] = 269, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 269, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 275, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 261, - [339] = 339, - [340] = 268, - [341] = 341, - [342] = 266, - [343] = 260, - [344] = 272, - [345] = 345, - [346] = 266, - [347] = 275, - [348] = 265, - [349] = 274, - [350] = 269, - [351] = 275, - [352] = 267, - [353] = 270, - [354] = 130, - [355] = 266, - [356] = 269, - [357] = 267, - [358] = 128, - [359] = 268, - [360] = 270, - [361] = 268, - [362] = 265, - [363] = 294, - [364] = 325, - [365] = 297, - [366] = 333, - [367] = 311, - [368] = 269, - [369] = 315, - [370] = 291, - [371] = 296, - [372] = 292, - [373] = 373, - [374] = 275, - [375] = 295, - [376] = 373, - [377] = 341, - [378] = 323, - [379] = 293, - [380] = 322, - [381] = 321, - [382] = 327, - [383] = 268, - [384] = 266, - [385] = 272, - [386] = 272, - [387] = 328, - [388] = 303, - [389] = 329, - [390] = 267, - [391] = 373, - [392] = 373, - [393] = 393, - [394] = 319, - [395] = 265, - [396] = 312, - [397] = 373, - [398] = 373, - [399] = 270, - [400] = 330, - [401] = 345, - [402] = 324, - [403] = 337, - [404] = 373, - [405] = 332, - [406] = 335, - [407] = 339, - [408] = 334, - [409] = 336, - [410] = 373, - [411] = 373, - [412] = 373, - [413] = 413, - [414] = 413, - [415] = 268, - [416] = 413, - [417] = 265, - [418] = 413, - [419] = 413, - [420] = 266, - [421] = 267, - [422] = 393, - [423] = 413, - [424] = 413, - [425] = 270, - [426] = 265, - [427] = 128, - [428] = 413, - [429] = 393, - [430] = 393, - [431] = 130, - [432] = 275, - [433] = 413, - [434] = 413, - [435] = 393, - [436] = 393, - [437] = 265, - [438] = 260, - [439] = 261, - [440] = 261, - [441] = 260, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 444, - [446] = 126, - [447] = 443, - [448] = 443, - [449] = 444, - [450] = 274, - [451] = 451, - [452] = 443, - [453] = 451, - [454] = 451, - [455] = 455, - [456] = 456, - [457] = 456, - [458] = 269, - [459] = 456, - [460] = 456, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 312, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 463, - [470] = 470, - [471] = 471, - [472] = 467, - [473] = 471, - [474] = 466, - [475] = 468, - [476] = 465, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 461, - [481] = 481, - [482] = 482, - [483] = 477, - [484] = 481, - [485] = 485, - [486] = 470, - [487] = 487, - [488] = 477, - [489] = 489, - [490] = 479, - [491] = 463, - [492] = 465, - [493] = 468, - [494] = 471, - [495] = 467, - [496] = 466, - [497] = 465, - [498] = 482, - [499] = 481, - [500] = 466, - [501] = 501, - [502] = 462, - [503] = 461, - [504] = 463, - [505] = 324, - [506] = 467, - [507] = 477, - [508] = 508, - [509] = 471, - [510] = 479, - [511] = 468, - [512] = 478, - [513] = 477, - [514] = 481, - [515] = 485, - [516] = 487, - [517] = 517, - [518] = 508, - [519] = 477, - [520] = 477, - [521] = 461, - [522] = 508, - [523] = 517, - [524] = 462, - [525] = 477, - [526] = 461, - [527] = 479, - [528] = 481, - [529] = 463, - [530] = 470, - [531] = 517, - [532] = 462, - [533] = 337, - [534] = 517, - [535] = 508, - [536] = 465, - [537] = 466, - [538] = 468, - [539] = 471, - [540] = 467, - [541] = 466, - [542] = 465, - [543] = 477, - [544] = 467, - [545] = 471, - [546] = 468, - [547] = 463, - [548] = 478, - [549] = 461, - [550] = 477, - [551] = 479, - [552] = 479, - [553] = 508, - [554] = 481, - [555] = 485, - [556] = 487, - [557] = 517, - [558] = 489, - [559] = 317, - [560] = 470, - [561] = 303, - [562] = 482, - [563] = 463, - [564] = 294, - [565] = 485, - [566] = 293, - [567] = 481, - [568] = 485, - [569] = 477, - [570] = 482, - [571] = 468, - [572] = 471, - [573] = 467, - [574] = 466, - [575] = 465, - [576] = 463, - [577] = 479, - [578] = 482, - [579] = 335, - [580] = 489, - [581] = 508, - [582] = 468, - [583] = 334, - [584] = 487, - [585] = 485, - [586] = 471, - [587] = 481, - [588] = 482, - [589] = 467, - [590] = 482, - [591] = 466, - [592] = 517, - [593] = 508, - [594] = 461, - [595] = 477, - [596] = 482, - [597] = 481, - [598] = 485, - [599] = 508, - [600] = 517, - [601] = 485, - [602] = 461, - [603] = 508, - [604] = 517, - [605] = 478, - [606] = 501, - [607] = 462, - [608] = 465, - [609] = 508, - [610] = 468, - [611] = 471, - [612] = 467, - [613] = 481, - [614] = 466, - [615] = 465, - [616] = 479, - [617] = 501, - [618] = 501, - [619] = 463, - [620] = 321, - [621] = 479, - [622] = 462, - [623] = 482, - [624] = 501, - [625] = 462, - [626] = 485, - [627] = 465, - [628] = 466, - [629] = 332, - [630] = 330, - [631] = 517, - [632] = 470, - [633] = 467, - [634] = 471, - [635] = 462, - [636] = 501, - [637] = 485, - [638] = 468, - [639] = 482, - [640] = 462, - [641] = 477, - [642] = 470, - [643] = 461, - [644] = 517, - [645] = 329, - [646] = 301, - [647] = 328, - [648] = 327, - [649] = 333, - [650] = 461, - [651] = 461, - [652] = 508, - [653] = 517, - [654] = 501, - [655] = 461, - [656] = 479, - [657] = 470, - [658] = 463, - [659] = 461, - [660] = 508, - [661] = 517, - [662] = 295, - [663] = 501, - [664] = 478, - [665] = 517, - [666] = 296, - [667] = 487, - [668] = 508, - [669] = 462, - [670] = 477, - [671] = 517, - [672] = 297, - [673] = 461, - [674] = 508, - [675] = 321, - [676] = 332, - [677] = 324, - [678] = 330, - [679] = 337, - [680] = 335, - [681] = 303, - [682] = 334, - [683] = 329, - [684] = 328, - [685] = 293, - [686] = 327, - [687] = 333, - [688] = 297, - [689] = 312, - [690] = 296, - [691] = 295, - [692] = 294, - [693] = 693, - [694] = 315, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 270, - [701] = 323, - [702] = 272, - [703] = 272, - [704] = 319, - [705] = 272, - [706] = 272, - [707] = 268, - [708] = 291, - [709] = 270, - [710] = 272, - [711] = 311, - [712] = 303, - [713] = 266, - [714] = 266, - [715] = 268, - [716] = 267, - [717] = 267, - [718] = 270, - [719] = 345, - [720] = 266, - [721] = 267, - [722] = 322, - [723] = 268, - [724] = 272, - [725] = 325, - [726] = 292, - [727] = 341, - [728] = 336, - [729] = 339, - [730] = 266, - [731] = 731, - [732] = 267, - [733] = 733, - [734] = 733, - [735] = 733, - [736] = 267, - [737] = 268, - [738] = 731, - [739] = 266, - [740] = 731, - [741] = 731, - [742] = 733, - [743] = 270, - [744] = 733, - [745] = 731, - [746] = 733, - [747] = 266, - [748] = 268, - [749] = 268, - [750] = 731, - [751] = 731, - [752] = 731, - [753] = 733, - [754] = 733, - [755] = 731, - [756] = 733, - [757] = 267, - [758] = 270, - [759] = 731, - [760] = 270, - [761] = 733, - [762] = 762, - [763] = 763, - [764] = 763, - [765] = 763, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 766, - [771] = 767, - [772] = 772, - [773] = 773, - [774] = 772, - [775] = 772, - [776] = 772, - [777] = 773, - [778] = 772, - [779] = 773, - [780] = 773, - [781] = 772, - [782] = 698, - [783] = 783, - [784] = 772, - [785] = 697, - [786] = 772, - [787] = 773, - [788] = 772, - [789] = 773, - [790] = 772, - [791] = 773, - [792] = 773, - [793] = 772, - [794] = 773, - [795] = 772, - [796] = 773, - [797] = 772, - [798] = 772, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 799, - [811] = 805, - [812] = 806, - [813] = 807, - [814] = 808, - [815] = 815, - [816] = 806, - [817] = 809, - [818] = 799, - [819] = 803, - [820] = 804, - [821] = 807, - [822] = 808, - [823] = 809, - [824] = 799, - [825] = 815, - [826] = 803, - [827] = 802, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 805, - [834] = 806, - [835] = 832, - [836] = 806, - [837] = 807, - [838] = 808, - [839] = 806, - [840] = 809, - [841] = 799, - [842] = 802, - [843] = 804, - [844] = 815, - [845] = 800, - [846] = 803, - [847] = 831, - [848] = 802, - [849] = 806, - [850] = 830, - [851] = 829, - [852] = 807, - [853] = 808, - [854] = 809, - [855] = 799, - [856] = 856, - [857] = 802, - [858] = 828, - [859] = 829, - [860] = 830, - [861] = 804, - [862] = 831, - [863] = 832, - [864] = 808, - [865] = 805, - [866] = 807, - [867] = 808, - [868] = 799, - [869] = 804, - [870] = 809, - [871] = 807, - [872] = 802, - [873] = 815, - [874] = 800, - [875] = 803, - [876] = 802, - [877] = 806, - [878] = 828, - [879] = 879, - [880] = 815, - [881] = 828, - [882] = 829, - [883] = 830, - [884] = 805, - [885] = 831, - [886] = 832, - [887] = 807, - [888] = 808, - [889] = 889, - [890] = 803, - [891] = 809, - [892] = 799, - [893] = 815, - [894] = 800, - [895] = 803, - [896] = 815, - [897] = 802, - [898] = 804, - [899] = 802, - [900] = 799, - [901] = 829, - [902] = 830, - [903] = 809, - [904] = 831, - [905] = 832, - [906] = 807, - [907] = 808, - [908] = 808, - [909] = 807, - [910] = 809, - [911] = 799, - [912] = 815, - [913] = 800, - [914] = 803, - [915] = 829, - [916] = 830, - [917] = 804, - [918] = 831, - [919] = 832, - [920] = 809, - [921] = 800, - [922] = 829, - [923] = 830, - [924] = 805, - [925] = 831, - [926] = 832, - [927] = 803, - [928] = 805, - [929] = 805, - [930] = 856, - [931] = 800, - [932] = 829, - [933] = 830, - [934] = 806, - [935] = 831, - [936] = 832, - [937] = 802, - [938] = 803, - [939] = 856, - [940] = 800, - [941] = 829, - [942] = 830, - [943] = 815, - [944] = 831, - [945] = 832, - [946] = 804, - [947] = 856, - [948] = 800, - [949] = 829, - [950] = 830, - [951] = 806, - [952] = 831, - [953] = 832, - [954] = 815, - [955] = 856, - [956] = 800, - [957] = 856, - [958] = 801, - [959] = 856, - [960] = 801, - [961] = 856, - [962] = 801, - [963] = 856, - [964] = 801, - [965] = 856, - [966] = 801, - [967] = 801, - [968] = 801, - [969] = 801, - [970] = 801, -}; - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(50); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '+') ADVANCE(44); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(47); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(41); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(56); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(55); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 1: - if (lookahead == '!') ADVANCE(6); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(50); - if (lookahead == '&') ADVANCE(3); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '+') ADVANCE(43); - if (lookahead == '-') ADVANCE(45); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(49); - if (lookahead == ':') ADVANCE(41); - if (lookahead == '<') ADVANCE(56); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(55); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 2: - if (lookahead == '"') ADVANCE(38); - if (lookahead != 0) ADVANCE(2); - END_STATE(); - case 3: - if (lookahead == '&') ADVANCE(53); - END_STATE(); - case 4: - if (lookahead == '\'') ADVANCE(38); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 5: - if (lookahead == '.') ADVANCE(42); - END_STATE(); - case 6: - if (lookahead == '=') ADVANCE(52); - END_STATE(); - case 7: - if (lookahead == '=') ADVANCE(51); - if (lookahead == '>') ADVANCE(63); - END_STATE(); - case 8: - if (lookahead == '>') ADVANCE(63); - END_STATE(); - case 9: - if (lookahead == '`') ADVANCE(38); - if (lookahead != 0) ADVANCE(9); - END_STATE(); - case 10: - if (lookahead == 'f') ADVANCE(62); - END_STATE(); - case 11: - if (lookahead == 'i') ADVANCE(10); - END_STATE(); - case 12: - if (lookahead == '|') ADVANCE(23); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(22); - if (lookahead != 0) ADVANCE(12); - END_STATE(); - case 13: - if (lookahead == '|') ADVANCE(54); - END_STATE(); - case 14: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - END_STATE(); - case 15: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); - END_STATE(); - case 16: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(50); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '+') ADVANCE(44); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(47); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(41); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(56); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(55); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 17: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(50); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '+') ADVANCE(43); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(46); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(41); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(56); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(55); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 18: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(50); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(48); - if (lookahead == '+') ADVANCE(43); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(46); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(41); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(56); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(55); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 19: - if (eof) ADVANCE(21); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '=') ADVANCE(8); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(64); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 20: - if (eof) ADVANCE(21); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == '-') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '=') ADVANCE(8); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '|') ADVANCE(64); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 21: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 22: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 23: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '|') ADVANCE(23); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(22); - if (lookahead != 0) ADVANCE(12); - END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 25: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 26: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 27: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 28: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 29: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 30: - ACCEPT_TOKEN(sym_identifier); - END_STATE(); - case 31: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 32: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 33: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 34: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 35: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 36: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - END_STATE(); - case 37: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); - END_STATE(); - case 38: - ACCEPT_TOKEN(sym_string); - END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 40: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 42: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 44: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(60); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - END_STATE(); - case 47: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == '=') ADVANCE(61); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 53: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 54: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(57); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(58); - END_STATE(); - case 57: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(51); - if (lookahead == '>') ADVANCE(63); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_elseif); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(54); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'h') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'w') ADVANCE(15); - if (lookahead == 'z') ADVANCE(16); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - if (lookahead == 'p') ADVANCE(17); - if (lookahead == 's') ADVANCE(18); - if (lookahead == 'w') ADVANCE(19); - END_STATE(); - case 2: - if (lookahead == 'a') ADVANCE(20); - END_STATE(); - case 3: - if (lookahead == 'o') ADVANCE(21); - END_STATE(); - case 4: - if (lookahead == 'o') ADVANCE(22); - END_STATE(); - case 5: - if (lookahead == 'l') ADVANCE(23); - END_STATE(); - case 6: - if (lookahead == 'a') ADVANCE(24); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'r') ADVANCE(27); - END_STATE(); - case 7: - if (lookahead == 'e') ADVANCE(28); - END_STATE(); - case 8: - if (lookahead == 'f') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(31); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); - END_STATE(); - case 11: - if (lookahead == 'u') ADVANCE(35); - END_STATE(); - case 12: - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'e') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); - END_STATE(); - case 13: - if (lookahead == 'e') ADVANCE(39); - if (lookahead == 'h') ADVANCE(40); - END_STATE(); - case 14: - if (lookahead == 'a') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); - if (lookahead == 'r') ADVANCE(43); - if (lookahead == 'y') ADVANCE(44); - END_STATE(); - case 15: - if (lookahead == 'h') ADVANCE(45); - if (lookahead == 'o') ADVANCE(46); - if (lookahead == 'r') ADVANCE(47); - END_STATE(); - case 16: - if (lookahead == 's') ADVANCE(48); - END_STATE(); - case 17: - if (lookahead == 'p') ADVANCE(49); - END_STATE(); - case 18: - if (lookahead == 's') ADVANCE(50); - if (lookahead == 'y') ADVANCE(51); - END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(52); - END_STATE(); - case 20: - if (lookahead == 's') ADVANCE(53); - END_STATE(); - case 21: - if (lookahead == 'l') ADVANCE(54); - END_STATE(); - case 22: - if (lookahead == 'w') ADVANCE(55); - END_STATE(); - case 23: - if (lookahead == 's') ADVANCE(56); - END_STATE(); - case 24: - if (lookahead == 'l') ADVANCE(57); - END_STATE(); - case 25: - if (lookahead == 'l') ADVANCE(58); - if (lookahead == 'n') ADVANCE(59); - if (lookahead == 's') ADVANCE(60); - END_STATE(); - case 26: - if (lookahead == 'r') ADVANCE(61); - END_STATE(); - case 27: - if (lookahead == 'o') ADVANCE(62); - END_STATE(); - case 28: - if (lookahead == 'l') ADVANCE(63); - END_STATE(); - case 29: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 30: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(64); - if (lookahead == 't') ADVANCE(65); - END_STATE(); - case 31: - if (lookahead == 'n') ADVANCE(66); - END_STATE(); - case 32: - if (lookahead == 'p') ADVANCE(67); - if (lookahead == 't') ADVANCE(68); - END_STATE(); - case 33: - if (lookahead == 't') ADVANCE(69); - END_STATE(); - case 34: - if (lookahead == 'v') ADVANCE(70); - END_STATE(); - case 35: - if (lookahead == 't') ADVANCE(71); - END_STATE(); - case 36: - if (lookahead == 'n') ADVANCE(72); - if (lookahead == 'w') ADVANCE(73); - END_STATE(); - case 37: - if (lookahead == 'a') ADVANCE(74); - if (lookahead == 'd') ADVANCE(75); - if (lookahead == 'm') ADVANCE(76); - if (lookahead == 'v') ADVANCE(77); - END_STATE(); - case 38: - if (lookahead == 'w') ADVANCE(78); - END_STATE(); - case 39: - if (lookahead == 'l') ADVANCE(79); - END_STATE(); - case 40: - ACCEPT_TOKEN(anon_sym_sh); - END_STATE(); - case 41: - if (lookahead == 'b') ADVANCE(80); - END_STATE(); - case 42: - ACCEPT_TOKEN(anon_sym_to); - if (lookahead == '_') ADVANCE(81); - END_STATE(); - case 43: - if (lookahead == 'a') ADVANCE(82); - if (lookahead == 'u') ADVANCE(83); - END_STATE(); - case 44: - if (lookahead == 'p') ADVANCE(84); - END_STATE(); - case 45: - if (lookahead == 'i') ADVANCE(85); - END_STATE(); - case 46: - if (lookahead == 'r') ADVANCE(86); - END_STATE(); - case 47: - if (lookahead == 'i') ADVANCE(87); - END_STATE(); - case 48: - if (lookahead == 'h') ADVANCE(88); - END_STATE(); - case 49: - if (lookahead == 'e') ADVANCE(89); - END_STATE(); - case 50: - if (lookahead == 'e') ADVANCE(90); - END_STATE(); - case 51: - if (lookahead == 'n') ADVANCE(91); - END_STATE(); - case 52: - if (lookahead == 'i') ADVANCE(92); - END_STATE(); - case 53: - if (lookahead == 'h') ADVANCE(93); - END_STATE(); - case 54: - if (lookahead == 'u') ADVANCE(94); - END_STATE(); - case 55: - if (lookahead == 'n') ADVANCE(95); - END_STATE(); - case 56: - if (lookahead == 'e') ADVANCE(96); - END_STATE(); - case 57: - if (lookahead == 's') ADVANCE(97); - END_STATE(); - case 58: - if (lookahead == 't') ADVANCE(98); - END_STATE(); - case 59: - if (lookahead == 'd') ADVANCE(99); - END_STATE(); - case 60: - if (lookahead == 'h') ADVANCE(100); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 62: - if (lookahead == 'm') ADVANCE(101); - END_STATE(); - case 63: - if (lookahead == 'p') ADVANCE(102); - END_STATE(); - case 64: - if (lookahead == 'e') ADVANCE(103); - END_STATE(); - case 65: - if (lookahead == 'o') ADVANCE(104); - END_STATE(); - case 66: - if (lookahead == 'g') ADVANCE(105); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_map); - END_STATE(); - case 68: - if (lookahead == 'c') ADVANCE(106); - END_STATE(); - case 69: - if (lookahead == 'a') ADVANCE(107); - END_STATE(); - case 70: - if (lookahead == 'e') ADVANCE(108); - END_STATE(); - case 71: - if (lookahead == 'p') ADVANCE(109); - END_STATE(); - case 72: - if (lookahead == 'd') ADVANCE(110); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_raw); - END_STATE(); - case 74: - if (lookahead == 'd') ADVANCE(111); - END_STATE(); - case 75: - if (lookahead == 'u') ADVANCE(112); - END_STATE(); - case 76: - if (lookahead == 'o') ADVANCE(113); - END_STATE(); - case 77: - if (lookahead == 'e') ADVANCE(114); - END_STATE(); - case 78: - if (lookahead == 's') ADVANCE(115); - END_STATE(); - case 79: - if (lookahead == 'e') ADVANCE(116); - END_STATE(); - case 80: - if (lookahead == 'l') ADVANCE(117); - END_STATE(); - case 81: - if (lookahead == 'f') ADVANCE(118); - if (lookahead == 'j') ADVANCE(119); - if (lookahead == 's') ADVANCE(120); - END_STATE(); - case 82: - if (lookahead == 'n') ADVANCE(121); - END_STATE(); - case 83: - if (lookahead == 'e') ADVANCE(122); - END_STATE(); - case 84: - if (lookahead == 'e') ADVANCE(123); - END_STATE(); - case 85: - if (lookahead == 'l') ADVANCE(124); - END_STATE(); - case 86: - if (lookahead == 'k') ADVANCE(125); - END_STATE(); - case 87: - if (lookahead == 't') ADVANCE(126); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_zsh); - END_STATE(); - case 89: - if (lookahead == 'n') ADVANCE(127); - END_STATE(); - case 90: - if (lookahead == 'r') ADVANCE(128); - END_STATE(); - case 91: - if (lookahead == 'c') ADVANCE(129); - END_STATE(); - case 92: - if (lookahead == 't') ADVANCE(130); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_bash); - END_STATE(); - case 94: - if (lookahead == 'm') ADVANCE(131); - END_STATE(); - case 95: - if (lookahead == 'l') ADVANCE(132); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(133); - END_STATE(); - case 98: - if (lookahead == 'e') ADVANCE(134); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_find); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_fish); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_from); - if (lookahead == '_') ADVANCE(135); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_help); - END_STATE(); - case 103: - if (lookahead == 'r') ADVANCE(136); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_into); - END_STATE(); - case 105: - if (lookahead == 't') ADVANCE(137); - END_STATE(); - case 106: - if (lookahead == 'h') ADVANCE(138); - END_STATE(); - case 107: - if (lookahead == 'd') ADVANCE(139); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_move); - END_STATE(); - case 109: - if (lookahead == 'u') ADVANCE(140); - END_STATE(); - case 110: - if (lookahead == 'o') ADVANCE(141); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_read); - END_STATE(); - case 112: - if (lookahead == 'c') ADVANCE(142); - END_STATE(); - case 113: - if (lookahead == 'v') ADVANCE(143); - END_STATE(); - case 114: - if (lookahead == 'r') ADVANCE(144); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_rows); - END_STATE(); - case 116: - if (lookahead == 'c') ADVANCE(145); - END_STATE(); - case 117: - if (lookahead == 'e') ADVANCE(146); - END_STATE(); - case 118: - if (lookahead == 'l') ADVANCE(147); - END_STATE(); - case 119: - if (lookahead == 's') ADVANCE(148); - END_STATE(); - case 120: - if (lookahead == 't') ADVANCE(149); - END_STATE(); - case 121: - if (lookahead == 's') ADVANCE(150); - END_STATE(); - case 122: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 124: - if (lookahead == 'e') ADVANCE(151); - END_STATE(); - case 125: - if (lookahead == 'd') ADVANCE(152); - END_STATE(); - case 126: - if (lookahead == 'e') ADVANCE(153); - END_STATE(); - case 127: - if (lookahead == 'd') ADVANCE(154); - END_STATE(); - case 128: - if (lookahead == 't') ADVANCE(155); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 131: - if (lookahead == 'n') ADVANCE(156); - END_STATE(); - case 132: - if (lookahead == 'o') ADVANCE(157); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 134: - if (lookahead == 'r') ADVANCE(158); - END_STATE(); - case 135: - if (lookahead == 'j') ADVANCE(159); - END_STATE(); - case 136: - if (lookahead == 't') ADVANCE(160); - END_STATE(); - case 137: - if (lookahead == 'h') ADVANCE(161); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 139: - if (lookahead == 'a') ADVANCE(162); - END_STATE(); - case 140: - if (lookahead == 't') ADVANCE(163); - END_STATE(); - case 141: - if (lookahead == 'm') ADVANCE(164); - END_STATE(); - case 142: - if (lookahead == 'e') ADVANCE(165); - END_STATE(); - case 143: - if (lookahead == 'e') ADVANCE(166); - END_STATE(); - case 144: - if (lookahead == 's') ADVANCE(167); - END_STATE(); - case 145: - if (lookahead == 't') ADVANCE(168); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_table); - END_STATE(); - case 147: - if (lookahead == 'o') ADVANCE(169); - END_STATE(); - case 148: - if (lookahead == 'o') ADVANCE(170); - END_STATE(); - case 149: - if (lookahead == 'r') ADVANCE(171); - END_STATE(); - case 150: - if (lookahead == 'f') ADVANCE(172); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 152: - if (lookahead == 'i') ADVANCE(173); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_write); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_append); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == '_') ADVANCE(174); - END_STATE(); - case 156: - if (lookahead == 's') ADVANCE(175); - END_STATE(); - case 157: - if (lookahead == 'a') ADVANCE(176); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_filter); - END_STATE(); - case 159: - if (lookahead == 's') ADVANCE(177); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_insert); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_length); - END_STATE(); - case 162: - if (lookahead == 't') ADVANCE(178); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_output); - if (lookahead == '_') ADVANCE(179); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_random); - if (lookahead == '_') ADVANCE(180); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_reduce); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_remove); - END_STATE(); - case 167: - if (lookahead == 'e') ADVANCE(181); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 169: - if (lookahead == 'a') ADVANCE(182); - END_STATE(); - case 170: - if (lookahead == 'n') ADVANCE(183); - END_STATE(); - case 171: - if (lookahead == 'i') ADVANCE(184); - END_STATE(); - case 172: - if (lookahead == 'o') ADVANCE(185); - END_STATE(); - case 173: - if (lookahead == 'r') ADVANCE(186); - END_STATE(); - case 174: - if (lookahead == 'e') ADVANCE(187); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_columns); - END_STATE(); - case 176: - if (lookahead == 'd') ADVANCE(188); - END_STATE(); - case 177: - if (lookahead == 'o') ADVANCE(189); - END_STATE(); - case 178: - if (lookahead == 'a') ADVANCE(190); - END_STATE(); - case 179: - if (lookahead == 'e') ADVANCE(191); - END_STATE(); - case 180: - if (lookahead == 'b') ADVANCE(192); - if (lookahead == 'f') ADVANCE(193); - if (lookahead == 'i') ADVANCE(194); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_reverse); - END_STATE(); - case 182: - if (lookahead == 't') ADVANCE(195); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_to_json); - END_STATE(); - case 184: - if (lookahead == 'n') ADVANCE(196); - END_STATE(); - case 185: - if (lookahead == 'r') ADVANCE(197); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_workdir); - END_STATE(); - case 187: - if (lookahead == 'q') ADVANCE(198); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_download); - END_STATE(); - case 189: - if (lookahead == 'n') ADVANCE(199); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_metadata); - END_STATE(); - case 191: - if (lookahead == 'r') ADVANCE(200); - END_STATE(); - case 192: - if (lookahead == 'o') ADVANCE(201); - END_STATE(); - case 193: - if (lookahead == 'l') ADVANCE(202); - END_STATE(); - case 194: - if (lookahead == 'n') ADVANCE(203); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_to_float); - END_STATE(); - case 196: - if (lookahead == 'g') ADVANCE(204); - END_STATE(); - case 197: - if (lookahead == 'm') ADVANCE(205); - END_STATE(); - case 198: - if (lookahead == 'u') ADVANCE(206); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_from_json); - END_STATE(); - case 200: - if (lookahead == 'r') ADVANCE(207); - END_STATE(); - case 201: - if (lookahead == 'o') ADVANCE(208); - END_STATE(); - case 202: - if (lookahead == 'o') ADVANCE(209); - END_STATE(); - case 203: - if (lookahead == 't') ADVANCE(210); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_to_string); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_transform); - END_STATE(); - case 206: - if (lookahead == 'a') ADVANCE(211); - END_STATE(); - case 207: - if (lookahead == 'o') ADVANCE(212); - END_STATE(); - case 208: - if (lookahead == 'l') ADVANCE(213); - END_STATE(); - case 209: - if (lookahead == 'a') ADVANCE(214); - END_STATE(); - case 210: - if (lookahead == 'e') ADVANCE(215); - END_STATE(); - case 211: - if (lookahead == 'l') ADVANCE(216); - END_STATE(); - case 212: - if (lookahead == 'r') ADVANCE(217); - END_STATE(); - case 213: - if (lookahead == 'e') ADVANCE(218); - END_STATE(); - case 214: - if (lookahead == 't') ADVANCE(219); - END_STATE(); - case 215: - if (lookahead == 'g') ADVANCE(220); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_assert_equal); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_output_error); - END_STATE(); - case 218: - if (lookahead == 'a') ADVANCE(221); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_random_float); - END_STATE(); - case 220: - if (lookahead == 'e') ADVANCE(222); - END_STATE(); - case 221: - if (lookahead == 'n') ADVANCE(223); - END_STATE(); - case 222: - if (lookahead == 'r') ADVANCE(224); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_random_boolean); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_random_integer); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 19}, - [2] = {.lex_state = 17}, - [3] = {.lex_state = 17}, - [4] = {.lex_state = 17}, - [5] = {.lex_state = 18}, - [6] = {.lex_state = 18}, - [7] = {.lex_state = 17}, - [8] = {.lex_state = 17}, - [9] = {.lex_state = 17}, - [10] = {.lex_state = 17}, - [11] = {.lex_state = 17}, - [12] = {.lex_state = 17}, - [13] = {.lex_state = 18}, - [14] = {.lex_state = 18}, - [15] = {.lex_state = 18}, - [16] = {.lex_state = 17}, - [17] = {.lex_state = 17}, - [18] = {.lex_state = 18}, - [19] = {.lex_state = 18}, - [20] = {.lex_state = 17}, - [21] = {.lex_state = 18}, - [22] = {.lex_state = 18}, - [23] = {.lex_state = 17}, - [24] = {.lex_state = 18}, - [25] = {.lex_state = 18}, - [26] = {.lex_state = 18}, - [27] = {.lex_state = 18}, - [28] = {.lex_state = 18}, - [29] = {.lex_state = 18}, - [30] = {.lex_state = 18}, - [31] = {.lex_state = 18}, - [32] = {.lex_state = 18}, - [33] = {.lex_state = 18}, - [34] = {.lex_state = 18}, - [35] = {.lex_state = 18}, - [36] = {.lex_state = 18}, - [37] = {.lex_state = 18}, - [38] = {.lex_state = 18}, - [39] = {.lex_state = 18}, - [40] = {.lex_state = 18}, - [41] = {.lex_state = 18}, - [42] = {.lex_state = 18}, - [43] = {.lex_state = 18}, - [44] = {.lex_state = 18}, - [45] = {.lex_state = 18}, - [46] = {.lex_state = 18}, - [47] = {.lex_state = 18}, - [48] = {.lex_state = 18}, - [49] = {.lex_state = 18}, - [50] = {.lex_state = 18}, - [51] = {.lex_state = 18}, - [52] = {.lex_state = 18}, - [53] = {.lex_state = 18}, - [54] = {.lex_state = 18}, - [55] = {.lex_state = 18}, - [56] = {.lex_state = 18}, - [57] = {.lex_state = 18}, - [58] = {.lex_state = 18}, - [59] = {.lex_state = 18}, - [60] = {.lex_state = 18}, - [61] = {.lex_state = 18}, - [62] = {.lex_state = 18}, - [63] = {.lex_state = 18}, - [64] = {.lex_state = 18}, - [65] = {.lex_state = 18}, - [66] = {.lex_state = 18}, - [67] = {.lex_state = 18}, - [68] = {.lex_state = 18}, - [69] = {.lex_state = 18}, - [70] = {.lex_state = 18}, - [71] = {.lex_state = 18}, - [72] = {.lex_state = 18}, - [73] = {.lex_state = 18}, - [74] = {.lex_state = 18}, - [75] = {.lex_state = 18}, - [76] = {.lex_state = 18}, - [77] = {.lex_state = 18}, - [78] = {.lex_state = 18}, - [79] = {.lex_state = 18}, - [80] = {.lex_state = 18}, - [81] = {.lex_state = 18}, - [82] = {.lex_state = 18}, - [83] = {.lex_state = 18}, - [84] = {.lex_state = 18}, - [85] = {.lex_state = 18}, - [86] = {.lex_state = 18}, - [87] = {.lex_state = 18}, - [88] = {.lex_state = 18}, - [89] = {.lex_state = 18}, - [90] = {.lex_state = 18}, - [91] = {.lex_state = 18}, - [92] = {.lex_state = 18}, - [93] = {.lex_state = 18}, - [94] = {.lex_state = 18}, - [95] = {.lex_state = 18}, - [96] = {.lex_state = 18}, - [97] = {.lex_state = 18}, - [98] = {.lex_state = 18}, - [99] = {.lex_state = 18}, - [100] = {.lex_state = 18}, - [101] = {.lex_state = 18}, - [102] = {.lex_state = 18}, - [103] = {.lex_state = 18}, - [104] = {.lex_state = 18}, - [105] = {.lex_state = 18}, - [106] = {.lex_state = 18}, - [107] = {.lex_state = 18}, - [108] = {.lex_state = 18}, - [109] = {.lex_state = 18}, - [110] = {.lex_state = 18}, - [111] = {.lex_state = 18}, - [112] = {.lex_state = 18}, - [113] = {.lex_state = 18}, - [114] = {.lex_state = 18}, - [115] = {.lex_state = 18}, - [116] = {.lex_state = 18}, - [117] = {.lex_state = 18}, - [118] = {.lex_state = 0}, - [119] = {.lex_state = 0}, - [120] = {.lex_state = 16}, - [121] = {.lex_state = 0}, - [122] = {.lex_state = 0}, - [123] = {.lex_state = 16}, - [124] = {.lex_state = 16}, - [125] = {.lex_state = 17}, - [126] = {.lex_state = 17}, - [127] = {.lex_state = 17}, - [128] = {.lex_state = 17}, - [129] = {.lex_state = 17}, - [130] = {.lex_state = 17}, - [131] = {.lex_state = 17}, - [132] = {.lex_state = 16}, - [133] = {.lex_state = 17}, - [134] = {.lex_state = 0}, - [135] = {.lex_state = 17}, - [136] = {.lex_state = 17}, - [137] = {.lex_state = 17}, - [138] = {.lex_state = 17}, - [139] = {.lex_state = 17}, - [140] = {.lex_state = 18}, - [141] = {.lex_state = 17}, - [142] = {.lex_state = 18}, - [143] = {.lex_state = 18}, - [144] = {.lex_state = 18}, - [145] = {.lex_state = 18}, - [146] = {.lex_state = 17}, - [147] = {.lex_state = 17}, - [148] = {.lex_state = 17}, - [149] = {.lex_state = 18}, - [150] = {.lex_state = 17}, - [151] = {.lex_state = 17}, - [152] = {.lex_state = 18}, - [153] = {.lex_state = 17}, - [154] = {.lex_state = 17}, - [155] = {.lex_state = 17}, - [156] = {.lex_state = 18}, - [157] = {.lex_state = 17}, - [158] = {.lex_state = 18}, - [159] = {.lex_state = 17}, - [160] = {.lex_state = 16}, - [161] = {.lex_state = 18}, - [162] = {.lex_state = 18}, - [163] = {.lex_state = 18}, - [164] = {.lex_state = 18}, - [165] = {.lex_state = 18}, - [166] = {.lex_state = 18}, - [167] = {.lex_state = 18}, - [168] = {.lex_state = 18}, - [169] = {.lex_state = 18}, - [170] = {.lex_state = 20}, - [171] = {.lex_state = 20}, - [172] = {.lex_state = 18}, - [173] = {.lex_state = 18}, - [174] = {.lex_state = 18}, - [175] = {.lex_state = 18}, - [176] = {.lex_state = 18}, - [177] = {.lex_state = 18}, - [178] = {.lex_state = 19}, - [179] = {.lex_state = 19}, - [180] = {.lex_state = 19}, - [181] = {.lex_state = 19}, - [182] = {.lex_state = 19}, - [183] = {.lex_state = 19}, - [184] = {.lex_state = 19}, - [185] = {.lex_state = 19}, - [186] = {.lex_state = 19}, - [187] = {.lex_state = 19}, - [188] = {.lex_state = 19}, - [189] = {.lex_state = 19}, - [190] = {.lex_state = 19}, - [191] = {.lex_state = 19}, - [192] = {.lex_state = 19}, - [193] = {.lex_state = 19}, - [194] = {.lex_state = 19}, - [195] = {.lex_state = 19}, - [196] = {.lex_state = 19}, - [197] = {.lex_state = 19}, - [198] = {.lex_state = 19}, - [199] = {.lex_state = 19}, - [200] = {.lex_state = 19}, - [201] = {.lex_state = 19}, - [202] = {.lex_state = 19}, - [203] = {.lex_state = 19}, - [204] = {.lex_state = 19}, - [205] = {.lex_state = 19}, - [206] = {.lex_state = 19}, - [207] = {.lex_state = 19}, - [208] = {.lex_state = 19}, - [209] = {.lex_state = 19}, - [210] = {.lex_state = 19}, - [211] = {.lex_state = 19}, - [212] = {.lex_state = 19}, - [213] = {.lex_state = 19}, - [214] = {.lex_state = 19}, - [215] = {.lex_state = 19}, - [216] = {.lex_state = 19}, - [217] = {.lex_state = 19}, - [218] = {.lex_state = 19}, - [219] = {.lex_state = 19}, - [220] = {.lex_state = 19}, - [221] = {.lex_state = 19}, - [222] = {.lex_state = 19}, - [223] = {.lex_state = 19}, - [224] = {.lex_state = 19}, - [225] = {.lex_state = 19}, - [226] = {.lex_state = 19}, - [227] = {.lex_state = 19}, - [228] = {.lex_state = 19}, - [229] = {.lex_state = 19}, - [230] = {.lex_state = 19}, - [231] = {.lex_state = 19}, - [232] = {.lex_state = 19}, - [233] = {.lex_state = 19}, - [234] = {.lex_state = 19}, - [235] = {.lex_state = 19}, - [236] = {.lex_state = 19}, - [237] = {.lex_state = 19}, - [238] = {.lex_state = 19}, - [239] = {.lex_state = 19}, - [240] = {.lex_state = 19}, - [241] = {.lex_state = 19}, - [242] = {.lex_state = 19}, - [243] = {.lex_state = 19}, - [244] = {.lex_state = 19}, - [245] = {.lex_state = 19}, - [246] = {.lex_state = 19}, - [247] = {.lex_state = 19}, - [248] = {.lex_state = 19}, - [249] = {.lex_state = 19}, - [250] = {.lex_state = 19}, - [251] = {.lex_state = 19}, - [252] = {.lex_state = 19}, - [253] = {.lex_state = 19}, - [254] = {.lex_state = 19}, - [255] = {.lex_state = 19}, - [256] = {.lex_state = 19}, - [257] = {.lex_state = 19}, - [258] = {.lex_state = 19}, - [259] = {.lex_state = 19}, - [260] = {.lex_state = 17}, - [261] = {.lex_state = 17}, - [262] = {.lex_state = 17}, - [263] = {.lex_state = 17}, - [264] = {.lex_state = 17}, - [265] = {.lex_state = 17}, - [266] = {.lex_state = 17}, - [267] = {.lex_state = 17}, - [268] = {.lex_state = 17}, - [269] = {.lex_state = 17}, - [270] = {.lex_state = 17}, - [271] = {.lex_state = 17}, - [272] = {.lex_state = 17}, - [273] = {.lex_state = 17}, - [274] = {.lex_state = 17}, - [275] = {.lex_state = 17}, - [276] = {.lex_state = 17}, - [277] = {.lex_state = 17}, - [278] = {.lex_state = 17}, - [279] = {.lex_state = 17}, - [280] = {.lex_state = 17}, - [281] = {.lex_state = 17}, - [282] = {.lex_state = 17}, - [283] = {.lex_state = 17}, - [284] = {.lex_state = 17}, - [285] = {.lex_state = 17}, - [286] = {.lex_state = 17}, - [287] = {.lex_state = 17}, - [288] = {.lex_state = 17}, - [289] = {.lex_state = 17}, - [290] = {.lex_state = 17}, - [291] = {.lex_state = 17}, - [292] = {.lex_state = 17}, - [293] = {.lex_state = 17}, - [294] = {.lex_state = 17}, - [295] = {.lex_state = 17}, - [296] = {.lex_state = 17}, - [297] = {.lex_state = 17}, - [298] = {.lex_state = 18}, - [299] = {.lex_state = 17}, - [300] = {.lex_state = 18}, - [301] = {.lex_state = 17}, - [302] = {.lex_state = 18}, - [303] = {.lex_state = 17}, - [304] = {.lex_state = 17}, - [305] = {.lex_state = 17}, - [306] = {.lex_state = 18}, - [307] = {.lex_state = 17}, - [308] = {.lex_state = 17}, - [309] = {.lex_state = 18}, - [310] = {.lex_state = 17}, - [311] = {.lex_state = 17}, - [312] = {.lex_state = 17}, - [313] = {.lex_state = 17}, - [314] = {.lex_state = 17}, - [315] = {.lex_state = 17}, - [316] = {.lex_state = 17}, - [317] = {.lex_state = 17}, - [318] = {.lex_state = 17}, - [319] = {.lex_state = 17}, - [320] = {.lex_state = 18}, - [321] = {.lex_state = 17}, - [322] = {.lex_state = 17}, - [323] = {.lex_state = 17}, - [324] = {.lex_state = 17}, - [325] = {.lex_state = 17}, - [326] = {.lex_state = 17}, - [327] = {.lex_state = 17}, - [328] = {.lex_state = 17}, - [329] = {.lex_state = 17}, - [330] = {.lex_state = 17}, - [331] = {.lex_state = 17}, - [332] = {.lex_state = 17}, - [333] = {.lex_state = 17}, - [334] = {.lex_state = 17}, - [335] = {.lex_state = 17}, - [336] = {.lex_state = 17}, - [337] = {.lex_state = 17}, - [338] = {.lex_state = 17}, - [339] = {.lex_state = 17}, - [340] = {.lex_state = 18}, - [341] = {.lex_state = 17}, - [342] = {.lex_state = 18}, - [343] = {.lex_state = 17}, - [344] = {.lex_state = 18}, - [345] = {.lex_state = 17}, - [346] = {.lex_state = 18}, - [347] = {.lex_state = 18}, - [348] = {.lex_state = 18}, - [349] = {.lex_state = 17}, - [350] = {.lex_state = 18}, - [351] = {.lex_state = 17}, - [352] = {.lex_state = 18}, - [353] = {.lex_state = 18}, - [354] = {.lex_state = 20}, - [355] = {.lex_state = 17}, - [356] = {.lex_state = 18}, - [357] = {.lex_state = 17}, - [358] = {.lex_state = 20}, - [359] = {.lex_state = 18}, - [360] = {.lex_state = 17}, - [361] = {.lex_state = 17}, - [362] = {.lex_state = 17}, - [363] = {.lex_state = 18}, - [364] = {.lex_state = 18}, - [365] = {.lex_state = 18}, - [366] = {.lex_state = 18}, - [367] = {.lex_state = 18}, - [368] = {.lex_state = 18}, - [369] = {.lex_state = 18}, - [370] = {.lex_state = 18}, - [371] = {.lex_state = 18}, - [372] = {.lex_state = 18}, - [373] = {.lex_state = 18}, - [374] = {.lex_state = 18}, - [375] = {.lex_state = 18}, - [376] = {.lex_state = 18}, - [377] = {.lex_state = 18}, - [378] = {.lex_state = 18}, - [379] = {.lex_state = 18}, - [380] = {.lex_state = 18}, - [381] = {.lex_state = 18}, - [382] = {.lex_state = 18}, - [383] = {.lex_state = 18}, - [384] = {.lex_state = 18}, - [385] = {.lex_state = 18}, - [386] = {.lex_state = 18}, - [387] = {.lex_state = 18}, - [388] = {.lex_state = 18}, - [389] = {.lex_state = 18}, - [390] = {.lex_state = 18}, - [391] = {.lex_state = 18}, - [392] = {.lex_state = 18}, - [393] = {.lex_state = 18}, - [394] = {.lex_state = 18}, - [395] = {.lex_state = 18}, - [396] = {.lex_state = 18}, - [397] = {.lex_state = 18}, - [398] = {.lex_state = 18}, - [399] = {.lex_state = 18}, - [400] = {.lex_state = 18}, - [401] = {.lex_state = 18}, - [402] = {.lex_state = 18}, - [403] = {.lex_state = 18}, - [404] = {.lex_state = 18}, - [405] = {.lex_state = 18}, - [406] = {.lex_state = 18}, - [407] = {.lex_state = 18}, - [408] = {.lex_state = 18}, - [409] = {.lex_state = 18}, - [410] = {.lex_state = 18}, - [411] = {.lex_state = 18}, - [412] = {.lex_state = 18}, - [413] = {.lex_state = 18}, - [414] = {.lex_state = 18}, - [415] = {.lex_state = 18}, - [416] = {.lex_state = 18}, - [417] = {.lex_state = 17}, - [418] = {.lex_state = 18}, - [419] = {.lex_state = 18}, - [420] = {.lex_state = 18}, - [421] = {.lex_state = 18}, - [422] = {.lex_state = 18}, - [423] = {.lex_state = 18}, - [424] = {.lex_state = 18}, - [425] = {.lex_state = 18}, - [426] = {.lex_state = 18}, - [427] = {.lex_state = 19}, - [428] = {.lex_state = 18}, - [429] = {.lex_state = 18}, - [430] = {.lex_state = 18}, - [431] = {.lex_state = 19}, - [432] = {.lex_state = 18}, - [433] = {.lex_state = 18}, - [434] = {.lex_state = 18}, - [435] = {.lex_state = 18}, - [436] = {.lex_state = 18}, - [437] = {.lex_state = 18}, - [438] = {.lex_state = 20}, - [439] = {.lex_state = 20}, - [440] = {.lex_state = 20}, - [441] = {.lex_state = 20}, - [442] = {.lex_state = 19}, - [443] = {.lex_state = 19}, - [444] = {.lex_state = 19}, - [445] = {.lex_state = 19}, - [446] = {.lex_state = 19}, - [447] = {.lex_state = 19}, - [448] = {.lex_state = 19}, - [449] = {.lex_state = 19}, - [450] = {.lex_state = 20}, - [451] = {.lex_state = 19}, - [452] = {.lex_state = 19}, - [453] = {.lex_state = 19}, - [454] = {.lex_state = 19}, - [455] = {.lex_state = 18}, - [456] = {.lex_state = 19}, - [457] = {.lex_state = 19}, - [458] = {.lex_state = 18}, - [459] = {.lex_state = 19}, - [460] = {.lex_state = 19}, - [461] = {.lex_state = 19}, - [462] = {.lex_state = 19}, - [463] = {.lex_state = 19}, - [464] = {.lex_state = 20}, - [465] = {.lex_state = 19}, - [466] = {.lex_state = 19}, - [467] = {.lex_state = 19}, - [468] = {.lex_state = 19}, - [469] = {.lex_state = 19}, - [470] = {.lex_state = 19}, - [471] = {.lex_state = 19}, - [472] = {.lex_state = 19}, - [473] = {.lex_state = 19}, - [474] = {.lex_state = 19}, - [475] = {.lex_state = 19}, - [476] = {.lex_state = 19}, - [477] = {.lex_state = 19}, - [478] = {.lex_state = 19}, - [479] = {.lex_state = 19}, - [480] = {.lex_state = 19}, - [481] = {.lex_state = 19}, - [482] = {.lex_state = 19}, - [483] = {.lex_state = 19}, - [484] = {.lex_state = 19}, - [485] = {.lex_state = 19}, - [486] = {.lex_state = 19}, - [487] = {.lex_state = 19}, - [488] = {.lex_state = 19}, - [489] = {.lex_state = 19}, - [490] = {.lex_state = 19}, - [491] = {.lex_state = 19}, - [492] = {.lex_state = 19}, - [493] = {.lex_state = 19}, - [494] = {.lex_state = 19}, - [495] = {.lex_state = 19}, - [496] = {.lex_state = 19}, - [497] = {.lex_state = 19}, - [498] = {.lex_state = 19}, - [499] = {.lex_state = 19}, - [500] = {.lex_state = 19}, - [501] = {.lex_state = 19}, - [502] = {.lex_state = 19}, - [503] = {.lex_state = 19}, - [504] = {.lex_state = 19}, - [505] = {.lex_state = 20}, - [506] = {.lex_state = 19}, - [507] = {.lex_state = 19}, - [508] = {.lex_state = 19}, - [509] = {.lex_state = 19}, - [510] = {.lex_state = 19}, - [511] = {.lex_state = 19}, - [512] = {.lex_state = 19}, - [513] = {.lex_state = 19}, - [514] = {.lex_state = 19}, - [515] = {.lex_state = 19}, - [516] = {.lex_state = 19}, - [517] = {.lex_state = 19}, - [518] = {.lex_state = 19}, - [519] = {.lex_state = 19}, - [520] = {.lex_state = 19}, - [521] = {.lex_state = 19}, - [522] = {.lex_state = 19}, - [523] = {.lex_state = 19}, - [524] = {.lex_state = 19}, - [525] = {.lex_state = 19}, - [526] = {.lex_state = 19}, - [527] = {.lex_state = 19}, - [528] = {.lex_state = 19}, - [529] = {.lex_state = 19}, - [530] = {.lex_state = 19}, - [531] = {.lex_state = 19}, - [532] = {.lex_state = 19}, - [533] = {.lex_state = 20}, - [534] = {.lex_state = 19}, - [535] = {.lex_state = 19}, - [536] = {.lex_state = 19}, - [537] = {.lex_state = 19}, - [538] = {.lex_state = 19}, - [539] = {.lex_state = 19}, - [540] = {.lex_state = 19}, - [541] = {.lex_state = 19}, - [542] = {.lex_state = 19}, - [543] = {.lex_state = 19}, - [544] = {.lex_state = 19}, - [545] = {.lex_state = 19}, - [546] = {.lex_state = 19}, - [547] = {.lex_state = 19}, - [548] = {.lex_state = 19}, - [549] = {.lex_state = 19}, - [550] = {.lex_state = 19}, - [551] = {.lex_state = 19}, - [552] = {.lex_state = 19}, - [553] = {.lex_state = 19}, - [554] = {.lex_state = 19}, - [555] = {.lex_state = 19}, - [556] = {.lex_state = 19}, - [557] = {.lex_state = 19}, - [558] = {.lex_state = 19}, - [559] = {.lex_state = 20}, - [560] = {.lex_state = 19}, - [561] = {.lex_state = 20}, - [562] = {.lex_state = 19}, - [563] = {.lex_state = 19}, - [564] = {.lex_state = 20}, - [565] = {.lex_state = 19}, - [566] = {.lex_state = 20}, - [567] = {.lex_state = 19}, - [568] = {.lex_state = 19}, - [569] = {.lex_state = 19}, - [570] = {.lex_state = 19}, - [571] = {.lex_state = 19}, - [572] = {.lex_state = 19}, - [573] = {.lex_state = 19}, - [574] = {.lex_state = 19}, - [575] = {.lex_state = 19}, - [576] = {.lex_state = 19}, - [577] = {.lex_state = 19}, - [578] = {.lex_state = 19}, - [579] = {.lex_state = 20}, - [580] = {.lex_state = 19}, - [581] = {.lex_state = 19}, - [582] = {.lex_state = 19}, - [583] = {.lex_state = 20}, - [584] = {.lex_state = 19}, - [585] = {.lex_state = 19}, - [586] = {.lex_state = 19}, - [587] = {.lex_state = 19}, - [588] = {.lex_state = 19}, - [589] = {.lex_state = 19}, - [590] = {.lex_state = 19}, - [591] = {.lex_state = 19}, - [592] = {.lex_state = 19}, - [593] = {.lex_state = 19}, - [594] = {.lex_state = 19}, - [595] = {.lex_state = 19}, - [596] = {.lex_state = 19}, - [597] = {.lex_state = 19}, - [598] = {.lex_state = 19}, - [599] = {.lex_state = 19}, - [600] = {.lex_state = 19}, - [601] = {.lex_state = 19}, - [602] = {.lex_state = 19}, - [603] = {.lex_state = 19}, - [604] = {.lex_state = 19}, - [605] = {.lex_state = 19}, - [606] = {.lex_state = 19}, - [607] = {.lex_state = 19}, - [608] = {.lex_state = 19}, - [609] = {.lex_state = 19}, - [610] = {.lex_state = 19}, - [611] = {.lex_state = 19}, - [612] = {.lex_state = 19}, - [613] = {.lex_state = 19}, - [614] = {.lex_state = 19}, - [615] = {.lex_state = 19}, - [616] = {.lex_state = 19}, - [617] = {.lex_state = 19}, - [618] = {.lex_state = 19}, - [619] = {.lex_state = 19}, - [620] = {.lex_state = 20}, - [621] = {.lex_state = 19}, - [622] = {.lex_state = 19}, - [623] = {.lex_state = 19}, - [624] = {.lex_state = 19}, - [625] = {.lex_state = 19}, - [626] = {.lex_state = 19}, - [627] = {.lex_state = 19}, - [628] = {.lex_state = 19}, - [629] = {.lex_state = 20}, - [630] = {.lex_state = 20}, - [631] = {.lex_state = 19}, - [632] = {.lex_state = 19}, - [633] = {.lex_state = 19}, - [634] = {.lex_state = 19}, - [635] = {.lex_state = 19}, - [636] = {.lex_state = 19}, - [637] = {.lex_state = 19}, - [638] = {.lex_state = 19}, - [639] = {.lex_state = 19}, - [640] = {.lex_state = 19}, - [641] = {.lex_state = 19}, - [642] = {.lex_state = 19}, - [643] = {.lex_state = 19}, - [644] = {.lex_state = 19}, - [645] = {.lex_state = 20}, - [646] = {.lex_state = 20}, - [647] = {.lex_state = 20}, - [648] = {.lex_state = 20}, - [649] = {.lex_state = 20}, - [650] = {.lex_state = 19}, - [651] = {.lex_state = 19}, - [652] = {.lex_state = 19}, - [653] = {.lex_state = 19}, - [654] = {.lex_state = 19}, - [655] = {.lex_state = 19}, - [656] = {.lex_state = 19}, - [657] = {.lex_state = 19}, - [658] = {.lex_state = 19}, - [659] = {.lex_state = 19}, - [660] = {.lex_state = 19}, - [661] = {.lex_state = 19}, - [662] = {.lex_state = 20}, - [663] = {.lex_state = 19}, - [664] = {.lex_state = 19}, - [665] = {.lex_state = 19}, - [666] = {.lex_state = 20}, - [667] = {.lex_state = 19}, - [668] = {.lex_state = 19}, - [669] = {.lex_state = 19}, - [670] = {.lex_state = 19}, - [671] = {.lex_state = 19}, - [672] = {.lex_state = 20}, - [673] = {.lex_state = 19}, - [674] = {.lex_state = 19}, - [675] = {.lex_state = 19}, - [676] = {.lex_state = 19}, - [677] = {.lex_state = 19}, - [678] = {.lex_state = 19}, - [679] = {.lex_state = 19}, - [680] = {.lex_state = 19}, - [681] = {.lex_state = 19}, - [682] = {.lex_state = 19}, - [683] = {.lex_state = 19}, - [684] = {.lex_state = 19}, - [685] = {.lex_state = 19}, - [686] = {.lex_state = 19}, - [687] = {.lex_state = 19}, - [688] = {.lex_state = 19}, - [689] = {.lex_state = 19}, - [690] = {.lex_state = 19}, - [691] = {.lex_state = 19}, - [692] = {.lex_state = 19}, - [693] = {.lex_state = 19}, - [694] = {.lex_state = 19}, - [695] = {.lex_state = 19}, - [696] = {.lex_state = 19}, - [697] = {.lex_state = 19}, - [698] = {.lex_state = 19}, - [699] = {.lex_state = 19}, - [700] = {.lex_state = 1}, - [701] = {.lex_state = 1}, - [702] = {.lex_state = 1}, - [703] = {.lex_state = 1}, - [704] = {.lex_state = 1}, - [705] = {.lex_state = 1}, - [706] = {.lex_state = 1}, - [707] = {.lex_state = 1}, - [708] = {.lex_state = 1}, - [709] = {.lex_state = 1}, - [710] = {.lex_state = 1}, - [711] = {.lex_state = 1}, - [712] = {.lex_state = 1}, - [713] = {.lex_state = 1}, - [714] = {.lex_state = 1}, - [715] = {.lex_state = 1}, - [716] = {.lex_state = 1}, - [717] = {.lex_state = 1}, - [718] = {.lex_state = 1}, - [719] = {.lex_state = 1}, - [720] = {.lex_state = 1}, - [721] = {.lex_state = 1}, - [722] = {.lex_state = 1}, - [723] = {.lex_state = 1}, - [724] = {.lex_state = 1}, - [725] = {.lex_state = 1}, - [726] = {.lex_state = 1}, - [727] = {.lex_state = 1}, - [728] = {.lex_state = 1}, - [729] = {.lex_state = 1}, - [730] = {.lex_state = 1}, - [731] = {.lex_state = 1}, - [732] = {.lex_state = 1}, - [733] = {.lex_state = 1}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 1}, - [736] = {.lex_state = 1}, - [737] = {.lex_state = 1}, - [738] = {.lex_state = 1}, - [739] = {.lex_state = 1}, - [740] = {.lex_state = 1}, - [741] = {.lex_state = 1}, - [742] = {.lex_state = 1}, - [743] = {.lex_state = 1}, - [744] = {.lex_state = 1}, - [745] = {.lex_state = 1}, - [746] = {.lex_state = 1}, - [747] = {.lex_state = 1}, - [748] = {.lex_state = 1}, - [749] = {.lex_state = 1}, - [750] = {.lex_state = 1}, - [751] = {.lex_state = 1}, - [752] = {.lex_state = 1}, - [753] = {.lex_state = 1}, - [754] = {.lex_state = 1}, - [755] = {.lex_state = 1}, - [756] = {.lex_state = 1}, - [757] = {.lex_state = 1}, - [758] = {.lex_state = 1}, - [759] = {.lex_state = 1}, - [760] = {.lex_state = 1}, - [761] = {.lex_state = 1}, - [762] = {.lex_state = 1}, - [763] = {.lex_state = 1}, - [764] = {.lex_state = 1}, - [765] = {.lex_state = 1}, - [766] = {.lex_state = 19}, - [767] = {.lex_state = 19}, - [768] = {.lex_state = 19}, - [769] = {.lex_state = 19}, - [770] = {.lex_state = 19}, - [771] = {.lex_state = 19}, - [772] = {.lex_state = 19}, - [773] = {.lex_state = 19}, - [774] = {.lex_state = 19}, - [775] = {.lex_state = 19}, - [776] = {.lex_state = 19}, - [777] = {.lex_state = 19}, - [778] = {.lex_state = 19}, - [779] = {.lex_state = 19}, - [780] = {.lex_state = 19}, - [781] = {.lex_state = 19}, - [782] = {.lex_state = 19}, - [783] = {.lex_state = 19}, - [784] = {.lex_state = 19}, - [785] = {.lex_state = 19}, - [786] = {.lex_state = 19}, - [787] = {.lex_state = 19}, - [788] = {.lex_state = 19}, - [789] = {.lex_state = 19}, - [790] = {.lex_state = 19}, - [791] = {.lex_state = 19}, - [792] = {.lex_state = 19}, - [793] = {.lex_state = 19}, - [794] = {.lex_state = 19}, - [795] = {.lex_state = 19}, - [796] = {.lex_state = 19}, - [797] = {.lex_state = 19}, - [798] = {.lex_state = 19}, - [799] = {.lex_state = 19}, - [800] = {.lex_state = 19}, - [801] = {.lex_state = 19}, - [802] = {.lex_state = 19}, - [803] = {.lex_state = 19}, - [804] = {.lex_state = 19}, - [805] = {.lex_state = 19}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 19}, - [808] = {.lex_state = 19}, - [809] = {.lex_state = 19}, - [810] = {.lex_state = 19}, - [811] = {.lex_state = 19}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 19}, - [814] = {.lex_state = 19}, - [815] = {.lex_state = 19}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 19}, - [818] = {.lex_state = 19}, - [819] = {.lex_state = 19}, - [820] = {.lex_state = 19}, - [821] = {.lex_state = 19}, - [822] = {.lex_state = 19}, - [823] = {.lex_state = 19}, - [824] = {.lex_state = 19}, - [825] = {.lex_state = 19}, - [826] = {.lex_state = 19}, - [827] = {.lex_state = 19}, - [828] = {.lex_state = 0}, - [829] = {.lex_state = 19}, - [830] = {.lex_state = 19}, - [831] = {.lex_state = 19}, - [832] = {.lex_state = 19}, - [833] = {.lex_state = 19}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 19}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 19}, - [838] = {.lex_state = 19}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 19}, - [841] = {.lex_state = 19}, - [842] = {.lex_state = 19}, - [843] = {.lex_state = 19}, - [844] = {.lex_state = 19}, - [845] = {.lex_state = 19}, - [846] = {.lex_state = 19}, - [847] = {.lex_state = 19}, - [848] = {.lex_state = 19}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 19}, - [851] = {.lex_state = 19}, - [852] = {.lex_state = 19}, - [853] = {.lex_state = 19}, - [854] = {.lex_state = 19}, - [855] = {.lex_state = 19}, - [856] = {.lex_state = 19}, - [857] = {.lex_state = 19}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 19}, - [860] = {.lex_state = 19}, - [861] = {.lex_state = 19}, - [862] = {.lex_state = 19}, - [863] = {.lex_state = 19}, - [864] = {.lex_state = 19}, - [865] = {.lex_state = 19}, - [866] = {.lex_state = 19}, - [867] = {.lex_state = 19}, - [868] = {.lex_state = 19}, - [869] = {.lex_state = 19}, - [870] = {.lex_state = 19}, - [871] = {.lex_state = 19}, - [872] = {.lex_state = 19}, - [873] = {.lex_state = 19}, - [874] = {.lex_state = 19}, - [875] = {.lex_state = 19}, - [876] = {.lex_state = 19}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 19}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 19}, - [883] = {.lex_state = 19}, - [884] = {.lex_state = 19}, - [885] = {.lex_state = 19}, - [886] = {.lex_state = 19}, - [887] = {.lex_state = 19}, - [888] = {.lex_state = 19}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 19}, - [891] = {.lex_state = 19}, - [892] = {.lex_state = 19}, - [893] = {.lex_state = 19}, - [894] = {.lex_state = 19}, - [895] = {.lex_state = 19}, - [896] = {.lex_state = 19}, - [897] = {.lex_state = 19}, - [898] = {.lex_state = 19}, - [899] = {.lex_state = 19}, - [900] = {.lex_state = 19}, - [901] = {.lex_state = 19}, - [902] = {.lex_state = 19}, - [903] = {.lex_state = 19}, - [904] = {.lex_state = 19}, - [905] = {.lex_state = 19}, - [906] = {.lex_state = 19}, - [907] = {.lex_state = 19}, - [908] = {.lex_state = 19}, - [909] = {.lex_state = 19}, - [910] = {.lex_state = 19}, - [911] = {.lex_state = 19}, - [912] = {.lex_state = 19}, - [913] = {.lex_state = 19}, - [914] = {.lex_state = 19}, - [915] = {.lex_state = 19}, - [916] = {.lex_state = 19}, - [917] = {.lex_state = 19}, - [918] = {.lex_state = 19}, - [919] = {.lex_state = 19}, - [920] = {.lex_state = 19}, - [921] = {.lex_state = 19}, - [922] = {.lex_state = 19}, - [923] = {.lex_state = 19}, - [924] = {.lex_state = 19}, - [925] = {.lex_state = 19}, - [926] = {.lex_state = 19}, - [927] = {.lex_state = 19}, - [928] = {.lex_state = 19}, - [929] = {.lex_state = 19}, - [930] = {.lex_state = 19}, - [931] = {.lex_state = 19}, - [932] = {.lex_state = 19}, - [933] = {.lex_state = 19}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 19}, - [936] = {.lex_state = 19}, - [937] = {.lex_state = 19}, - [938] = {.lex_state = 19}, - [939] = {.lex_state = 19}, - [940] = {.lex_state = 19}, - [941] = {.lex_state = 19}, - [942] = {.lex_state = 19}, - [943] = {.lex_state = 19}, - [944] = {.lex_state = 19}, - [945] = {.lex_state = 19}, - [946] = {.lex_state = 19}, - [947] = {.lex_state = 19}, - [948] = {.lex_state = 19}, - [949] = {.lex_state = 19}, - [950] = {.lex_state = 19}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 19}, - [953] = {.lex_state = 19}, - [954] = {.lex_state = 19}, - [955] = {.lex_state = 19}, - [956] = {.lex_state = 19}, - [957] = {.lex_state = 19}, - [958] = {.lex_state = 19}, - [959] = {.lex_state = 19}, - [960] = {.lex_state = 19}, - [961] = {.lex_state = 19}, - [962] = {.lex_state = 19}, - [963] = {.lex_state = 19}, - [964] = {.lex_state = 19}, - [965] = {.lex_state = 19}, - [966] = {.lex_state = 19}, - [967] = {.lex_state = 19}, - [968] = {.lex_state = 19}, - [969] = {.lex_state = 19}, - [970] = {.lex_state = 19}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [sym_integer] = ACTIONS(1), - [sym_float] = ACTIONS(1), - [sym_string] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_map] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_elseif] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_transform] = ACTIONS(1), - [anon_sym_filter] = ACTIONS(1), - [anon_sym_find] = ACTIONS(1), - [anon_sym_remove] = ACTIONS(1), - [anon_sym_from] = ACTIONS(1), - [anon_sym_reduce] = ACTIONS(1), - [anon_sym_to] = ACTIONS(1), - [anon_sym_select] = ACTIONS(1), - [anon_sym_insert] = ACTIONS(1), - [anon_sym_into] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_table] = ACTIONS(1), - [anon_sym_assert] = ACTIONS(1), - [anon_sym_assert_equal] = ACTIONS(1), - [anon_sym_download] = ACTIONS(1), - [anon_sym_help] = ACTIONS(1), - [anon_sym_length] = ACTIONS(1), - [anon_sym_output] = ACTIONS(1), - [anon_sym_output_error] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_append] = ACTIONS(1), - [anon_sym_metadata] = ACTIONS(1), - [anon_sym_move] = ACTIONS(1), - [anon_sym_read] = ACTIONS(1), - [anon_sym_workdir] = ACTIONS(1), - [anon_sym_write] = ACTIONS(1), - [anon_sym_from_json] = ACTIONS(1), - [anon_sym_to_json] = ACTIONS(1), - [anon_sym_to_string] = ACTIONS(1), - [anon_sym_to_float] = ACTIONS(1), - [anon_sym_bash] = ACTIONS(1), - [anon_sym_fish] = ACTIONS(1), - [anon_sym_raw] = ACTIONS(1), - [anon_sym_sh] = ACTIONS(1), - [anon_sym_zsh] = ACTIONS(1), - [anon_sym_random] = ACTIONS(1), - [anon_sym_random_boolean] = ACTIONS(1), - [anon_sym_random_float] = ACTIONS(1), - [anon_sym_random_integer] = ACTIONS(1), - [anon_sym_columns] = ACTIONS(1), - [anon_sym_rows] = ACTIONS(1), - [anon_sym_reverse] = ACTIONS(1), - }, - [1] = { - [sym_root] = STATE(879), - [sym_block] = STATE(889), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [2] = { - [sym_block] = STATE(295), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(593), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(592), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(55), - [anon_sym_COMMA] = ACTIONS(55), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(55), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_elseif] = ACTIONS(55), - [anon_sym_else] = ACTIONS(89), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [3] = { - [sym_block] = STATE(295), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(535), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(534), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(55), - [anon_sym_COMMA] = ACTIONS(55), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(55), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_elseif] = ACTIONS(55), - [anon_sym_else] = ACTIONS(89), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [4] = { - [sym_block] = STATE(295), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(652), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(653), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(55), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_elseif] = ACTIONS(55), - [anon_sym_else] = ACTIONS(89), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [5] = { - [sym_block] = STATE(375), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(674), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(671), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(55), - [anon_sym_COMMA] = ACTIONS(55), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(55), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [6] = { - [sym_block] = STATE(375), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(553), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(557), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(55), - [anon_sym_COMMA] = ACTIONS(55), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(55), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [7] = { - [sym_statement] = STATE(7), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(7), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(272), - [sym_string] = ACTIONS(272), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_map] = ACTIONS(281), - [anon_sym_async] = ACTIONS(284), - [anon_sym_await] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(292), - [anon_sym_elseif] = ACTIONS(261), - [anon_sym_else] = ACTIONS(290), - [anon_sym_match] = ACTIONS(295), - [anon_sym_EQ_GT] = ACTIONS(298), - [anon_sym_while] = ACTIONS(301), - [anon_sym_for] = ACTIONS(304), - [anon_sym_transform] = ACTIONS(307), - [anon_sym_filter] = ACTIONS(310), - [anon_sym_find] = ACTIONS(313), - [anon_sym_remove] = ACTIONS(316), - [anon_sym_reduce] = ACTIONS(319), - [anon_sym_select] = ACTIONS(322), - [anon_sym_insert] = ACTIONS(325), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(334), - [anon_sym_assert_equal] = ACTIONS(334), - [anon_sym_download] = ACTIONS(334), - [anon_sym_help] = ACTIONS(334), - [anon_sym_length] = ACTIONS(334), - [anon_sym_output] = ACTIONS(334), - [anon_sym_output_error] = ACTIONS(334), - [anon_sym_type] = ACTIONS(334), - [anon_sym_append] = ACTIONS(334), - [anon_sym_metadata] = ACTIONS(334), - [anon_sym_move] = ACTIONS(334), - [anon_sym_read] = ACTIONS(334), - [anon_sym_workdir] = ACTIONS(334), - [anon_sym_write] = ACTIONS(334), - [anon_sym_from_json] = ACTIONS(334), - [anon_sym_to_json] = ACTIONS(334), - [anon_sym_to_string] = ACTIONS(334), - [anon_sym_to_float] = ACTIONS(334), - [anon_sym_bash] = ACTIONS(334), - [anon_sym_fish] = ACTIONS(334), - [anon_sym_raw] = ACTIONS(334), - [anon_sym_sh] = ACTIONS(334), - [anon_sym_zsh] = ACTIONS(334), - [anon_sym_random] = ACTIONS(334), - [anon_sym_random_boolean] = ACTIONS(334), - [anon_sym_random_float] = ACTIONS(334), - [anon_sym_random_integer] = ACTIONS(334), - [anon_sym_columns] = ACTIONS(334), - [anon_sym_rows] = ACTIONS(334), - [anon_sym_reverse] = ACTIONS(334), - }, - [8] = { - [sym_block] = STATE(295), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(522), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(523), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(55), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_elseif] = ACTIONS(55), - [anon_sym_else] = ACTIONS(89), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [9] = { - [sym_statement] = STATE(7), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(7), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(373), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(87), - [anon_sym_elseif] = ACTIONS(373), - [anon_sym_else] = ACTIONS(375), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [10] = { - [sym_block] = STATE(662), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(522), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(523), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_elseif] = ACTIONS(55), - [anon_sym_else] = ACTIONS(89), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [11] = { - [sym_statement] = STATE(11), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(11), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(272), - [sym_string] = ACTIONS(272), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_map] = ACTIONS(404), - [anon_sym_async] = ACTIONS(407), - [anon_sym_await] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(410), - [anon_sym_elseif] = ACTIONS(261), - [anon_sym_else] = ACTIONS(290), - [anon_sym_match] = ACTIONS(413), - [anon_sym_EQ_GT] = ACTIONS(416), - [anon_sym_while] = ACTIONS(419), - [anon_sym_for] = ACTIONS(422), - [anon_sym_transform] = ACTIONS(425), - [anon_sym_filter] = ACTIONS(428), - [anon_sym_find] = ACTIONS(431), - [anon_sym_remove] = ACTIONS(434), - [anon_sym_reduce] = ACTIONS(437), - [anon_sym_select] = ACTIONS(440), - [anon_sym_insert] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(446), - [anon_sym_assert] = ACTIONS(449), - [anon_sym_assert_equal] = ACTIONS(449), - [anon_sym_download] = ACTIONS(449), - [anon_sym_help] = ACTIONS(449), - [anon_sym_length] = ACTIONS(449), - [anon_sym_output] = ACTIONS(449), - [anon_sym_output_error] = ACTIONS(449), - [anon_sym_type] = ACTIONS(449), - [anon_sym_append] = ACTIONS(449), - [anon_sym_metadata] = ACTIONS(449), - [anon_sym_move] = ACTIONS(449), - [anon_sym_read] = ACTIONS(449), - [anon_sym_workdir] = ACTIONS(449), - [anon_sym_write] = ACTIONS(449), - [anon_sym_from_json] = ACTIONS(449), - [anon_sym_to_json] = ACTIONS(449), - [anon_sym_to_string] = ACTIONS(449), - [anon_sym_to_float] = ACTIONS(449), - [anon_sym_bash] = ACTIONS(449), - [anon_sym_fish] = ACTIONS(449), - [anon_sym_raw] = ACTIONS(449), - [anon_sym_sh] = ACTIONS(449), - [anon_sym_zsh] = ACTIONS(449), - [anon_sym_random] = ACTIONS(449), - [anon_sym_random_boolean] = ACTIONS(449), - [anon_sym_random_float] = ACTIONS(449), - [anon_sym_random_integer] = ACTIONS(449), - [anon_sym_columns] = ACTIONS(449), - [anon_sym_rows] = ACTIONS(449), - [anon_sym_reverse] = ACTIONS(449), - }, - [12] = { - [sym_statement] = STATE(11), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(11), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(373), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(127), - [anon_sym_elseif] = ACTIONS(373), - [anon_sym_else] = ACTIONS(375), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [13] = { - [sym_block] = STATE(375), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(603), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(604), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(55), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [14] = { - [sym_block] = STATE(375), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(55), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [15] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(508), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [sym_integer] = ACTIONS(514), - [sym_float] = ACTIONS(517), - [sym_string] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_map] = ACTIONS(526), - [anon_sym_async] = ACTIONS(529), - [anon_sym_await] = ACTIONS(532), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(292), - [anon_sym_match] = ACTIONS(535), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_while] = ACTIONS(541), - [anon_sym_for] = ACTIONS(544), - [anon_sym_transform] = ACTIONS(547), - [anon_sym_filter] = ACTIONS(550), - [anon_sym_find] = ACTIONS(553), - [anon_sym_remove] = ACTIONS(556), - [anon_sym_reduce] = ACTIONS(559), - [anon_sym_select] = ACTIONS(562), - [anon_sym_insert] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(568), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_assert_equal] = ACTIONS(571), - [anon_sym_download] = ACTIONS(571), - [anon_sym_help] = ACTIONS(571), - [anon_sym_length] = ACTIONS(571), - [anon_sym_output] = ACTIONS(571), - [anon_sym_output_error] = ACTIONS(571), - [anon_sym_type] = ACTIONS(571), - [anon_sym_append] = ACTIONS(571), - [anon_sym_metadata] = ACTIONS(571), - [anon_sym_move] = ACTIONS(571), - [anon_sym_read] = ACTIONS(571), - [anon_sym_workdir] = ACTIONS(571), - [anon_sym_write] = ACTIONS(571), - [anon_sym_from_json] = ACTIONS(571), - [anon_sym_to_json] = ACTIONS(571), - [anon_sym_to_string] = ACTIONS(571), - [anon_sym_to_float] = ACTIONS(571), - [anon_sym_bash] = ACTIONS(571), - [anon_sym_fish] = ACTIONS(571), - [anon_sym_raw] = ACTIONS(571), - [anon_sym_sh] = ACTIONS(571), - [anon_sym_zsh] = ACTIONS(571), - [anon_sym_random] = ACTIONS(571), - [anon_sym_random_boolean] = ACTIONS(571), - [anon_sym_random_float] = ACTIONS(571), - [anon_sym_random_integer] = ACTIONS(571), - [anon_sym_columns] = ACTIONS(571), - [anon_sym_rows] = ACTIONS(571), - [anon_sym_reverse] = ACTIONS(571), - }, - [16] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(373), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(163), - [anon_sym_elseif] = ACTIONS(373), - [anon_sym_else] = ACTIONS(375), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [17] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(574), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_RPAREN] = ACTIONS(261), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(272), - [sym_string] = ACTIONS(272), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_map] = ACTIONS(577), - [anon_sym_async] = ACTIONS(580), - [anon_sym_await] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(583), - [anon_sym_elseif] = ACTIONS(261), - [anon_sym_else] = ACTIONS(290), - [anon_sym_match] = ACTIONS(586), - [anon_sym_EQ_GT] = ACTIONS(589), - [anon_sym_while] = ACTIONS(592), - [anon_sym_for] = ACTIONS(595), - [anon_sym_transform] = ACTIONS(598), - [anon_sym_filter] = ACTIONS(601), - [anon_sym_find] = ACTIONS(604), - [anon_sym_remove] = ACTIONS(607), - [anon_sym_reduce] = ACTIONS(610), - [anon_sym_select] = ACTIONS(613), - [anon_sym_insert] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(619), - [anon_sym_assert] = ACTIONS(622), - [anon_sym_assert_equal] = ACTIONS(622), - [anon_sym_download] = ACTIONS(622), - [anon_sym_help] = ACTIONS(622), - [anon_sym_length] = ACTIONS(622), - [anon_sym_output] = ACTIONS(622), - [anon_sym_output_error] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_append] = ACTIONS(622), - [anon_sym_metadata] = ACTIONS(622), - [anon_sym_move] = ACTIONS(622), - [anon_sym_read] = ACTIONS(622), - [anon_sym_workdir] = ACTIONS(622), - [anon_sym_write] = ACTIONS(622), - [anon_sym_from_json] = ACTIONS(622), - [anon_sym_to_json] = ACTIONS(622), - [anon_sym_to_string] = ACTIONS(622), - [anon_sym_to_float] = ACTIONS(622), - [anon_sym_bash] = ACTIONS(622), - [anon_sym_fish] = ACTIONS(622), - [anon_sym_raw] = ACTIONS(622), - [anon_sym_sh] = ACTIONS(622), - [anon_sym_zsh] = ACTIONS(622), - [anon_sym_random] = ACTIONS(622), - [anon_sym_random_boolean] = ACTIONS(622), - [anon_sym_random_float] = ACTIONS(622), - [anon_sym_random_integer] = ACTIONS(622), - [anon_sym_columns] = ACTIONS(622), - [anon_sym_rows] = ACTIONS(622), - [anon_sym_reverse] = ACTIONS(622), - }, - [18] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(373), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [19] = { - [sym_block] = STATE(691), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [ts_builtin_sym_end] = ACTIONS(55), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [20] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(373), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(345), - [anon_sym_elseif] = ACTIONS(373), - [anon_sym_else] = ACTIONS(375), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [21] = { - [sym_statement] = STATE(21), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(21), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(627), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [sym_integer] = ACTIONS(514), - [sym_float] = ACTIONS(517), - [sym_string] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_map] = ACTIONS(630), - [anon_sym_async] = ACTIONS(633), - [anon_sym_await] = ACTIONS(532), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(410), - [anon_sym_match] = ACTIONS(636), - [anon_sym_EQ_GT] = ACTIONS(639), - [anon_sym_while] = ACTIONS(642), - [anon_sym_for] = ACTIONS(645), - [anon_sym_transform] = ACTIONS(648), - [anon_sym_filter] = ACTIONS(651), - [anon_sym_find] = ACTIONS(654), - [anon_sym_remove] = ACTIONS(657), - [anon_sym_reduce] = ACTIONS(660), - [anon_sym_select] = ACTIONS(663), - [anon_sym_insert] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(669), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_assert_equal] = ACTIONS(672), - [anon_sym_download] = ACTIONS(672), - [anon_sym_help] = ACTIONS(672), - [anon_sym_length] = ACTIONS(672), - [anon_sym_output] = ACTIONS(672), - [anon_sym_output_error] = ACTIONS(672), - [anon_sym_type] = ACTIONS(672), - [anon_sym_append] = ACTIONS(672), - [anon_sym_metadata] = ACTIONS(672), - [anon_sym_move] = ACTIONS(672), - [anon_sym_read] = ACTIONS(672), - [anon_sym_workdir] = ACTIONS(672), - [anon_sym_write] = ACTIONS(672), - [anon_sym_from_json] = ACTIONS(672), - [anon_sym_to_json] = ACTIONS(672), - [anon_sym_to_string] = ACTIONS(672), - [anon_sym_to_float] = ACTIONS(672), - [anon_sym_bash] = ACTIONS(672), - [anon_sym_fish] = ACTIONS(672), - [anon_sym_raw] = ACTIONS(672), - [anon_sym_sh] = ACTIONS(672), - [anon_sym_zsh] = ACTIONS(672), - [anon_sym_random] = ACTIONS(672), - [anon_sym_random_boolean] = ACTIONS(672), - [anon_sym_random_float] = ACTIONS(672), - [anon_sym_random_integer] = ACTIONS(672), - [anon_sym_columns] = ACTIONS(672), - [anon_sym_rows] = ACTIONS(672), - [anon_sym_reverse] = ACTIONS(672), - }, - [22] = { - [sym_statement] = STATE(21), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(21), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(373), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [23] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_RPAREN] = ACTIONS(261), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(272), - [sym_string] = ACTIONS(272), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_map] = ACTIONS(678), - [anon_sym_async] = ACTIONS(681), - [anon_sym_await] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(684), - [anon_sym_elseif] = ACTIONS(261), - [anon_sym_else] = ACTIONS(290), - [anon_sym_match] = ACTIONS(687), - [anon_sym_EQ_GT] = ACTIONS(690), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(696), - [anon_sym_transform] = ACTIONS(699), - [anon_sym_filter] = ACTIONS(702), - [anon_sym_find] = ACTIONS(705), - [anon_sym_remove] = ACTIONS(708), - [anon_sym_reduce] = ACTIONS(711), - [anon_sym_select] = ACTIONS(714), - [anon_sym_insert] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(720), - [anon_sym_assert] = ACTIONS(723), - [anon_sym_assert_equal] = ACTIONS(723), - [anon_sym_download] = ACTIONS(723), - [anon_sym_help] = ACTIONS(723), - [anon_sym_length] = ACTIONS(723), - [anon_sym_output] = ACTIONS(723), - [anon_sym_output_error] = ACTIONS(723), - [anon_sym_type] = ACTIONS(723), - [anon_sym_append] = ACTIONS(723), - [anon_sym_metadata] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_read] = ACTIONS(723), - [anon_sym_workdir] = ACTIONS(723), - [anon_sym_write] = ACTIONS(723), - [anon_sym_from_json] = ACTIONS(723), - [anon_sym_to_json] = ACTIONS(723), - [anon_sym_to_string] = ACTIONS(723), - [anon_sym_to_float] = ACTIONS(723), - [anon_sym_bash] = ACTIONS(723), - [anon_sym_fish] = ACTIONS(723), - [anon_sym_raw] = ACTIONS(723), - [anon_sym_sh] = ACTIONS(723), - [anon_sym_zsh] = ACTIONS(723), - [anon_sym_random] = ACTIONS(723), - [anon_sym_random_boolean] = ACTIONS(723), - [anon_sym_random_float] = ACTIONS(723), - [anon_sym_random_integer] = ACTIONS(723), - [anon_sym_columns] = ACTIONS(723), - [anon_sym_rows] = ACTIONS(723), - [anon_sym_reverse] = ACTIONS(723), - }, - [24] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(373), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [25] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(726), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(261), - [sym_integer] = ACTIONS(514), - [sym_float] = ACTIONS(517), - [sym_string] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_map] = ACTIONS(729), - [anon_sym_async] = ACTIONS(732), - [anon_sym_await] = ACTIONS(532), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(583), - [anon_sym_match] = ACTIONS(735), - [anon_sym_EQ_GT] = ACTIONS(738), - [anon_sym_while] = ACTIONS(741), - [anon_sym_for] = ACTIONS(744), - [anon_sym_transform] = ACTIONS(747), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_find] = ACTIONS(753), - [anon_sym_remove] = ACTIONS(756), - [anon_sym_reduce] = ACTIONS(759), - [anon_sym_select] = ACTIONS(762), - [anon_sym_insert] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(768), - [anon_sym_assert] = ACTIONS(771), - [anon_sym_assert_equal] = ACTIONS(771), - [anon_sym_download] = ACTIONS(771), - [anon_sym_help] = ACTIONS(771), - [anon_sym_length] = ACTIONS(771), - [anon_sym_output] = ACTIONS(771), - [anon_sym_output_error] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_append] = ACTIONS(771), - [anon_sym_metadata] = ACTIONS(771), - [anon_sym_move] = ACTIONS(771), - [anon_sym_read] = ACTIONS(771), - [anon_sym_workdir] = ACTIONS(771), - [anon_sym_write] = ACTIONS(771), - [anon_sym_from_json] = ACTIONS(771), - [anon_sym_to_json] = ACTIONS(771), - [anon_sym_to_string] = ACTIONS(771), - [anon_sym_to_float] = ACTIONS(771), - [anon_sym_bash] = ACTIONS(771), - [anon_sym_fish] = ACTIONS(771), - [anon_sym_raw] = ACTIONS(771), - [anon_sym_sh] = ACTIONS(771), - [anon_sym_zsh] = ACTIONS(771), - [anon_sym_random] = ACTIONS(771), - [anon_sym_random_boolean] = ACTIONS(771), - [anon_sym_random_float] = ACTIONS(771), - [anon_sym_random_integer] = ACTIONS(771), - [anon_sym_columns] = ACTIONS(771), - [anon_sym_rows] = ACTIONS(771), - [anon_sym_reverse] = ACTIONS(771), - }, - [26] = { - [sym_statement] = STATE(27), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(373), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [27] = { - [sym_statement] = STATE(27), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(261), - [sym_integer] = ACTIONS(514), - [sym_float] = ACTIONS(517), - [sym_string] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_map] = ACTIONS(777), - [anon_sym_async] = ACTIONS(780), - [anon_sym_await] = ACTIONS(532), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(261), - [anon_sym_EQ_EQ] = ACTIONS(261), - [anon_sym_BANG_EQ] = ACTIONS(261), - [anon_sym_AMP_AMP] = ACTIONS(261), - [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_EQ] = ACTIONS(261), - [anon_sym_if] = ACTIONS(684), - [anon_sym_match] = ACTIONS(783), - [anon_sym_EQ_GT] = ACTIONS(786), - [anon_sym_while] = ACTIONS(789), - [anon_sym_for] = ACTIONS(792), - [anon_sym_transform] = ACTIONS(795), - [anon_sym_filter] = ACTIONS(798), - [anon_sym_find] = ACTIONS(801), - [anon_sym_remove] = ACTIONS(804), - [anon_sym_reduce] = ACTIONS(807), - [anon_sym_select] = ACTIONS(810), - [anon_sym_insert] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_table] = ACTIONS(816), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_assert_equal] = ACTIONS(819), - [anon_sym_download] = ACTIONS(819), - [anon_sym_help] = ACTIONS(819), - [anon_sym_length] = ACTIONS(819), - [anon_sym_output] = ACTIONS(819), - [anon_sym_output_error] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_append] = ACTIONS(819), - [anon_sym_metadata] = ACTIONS(819), - [anon_sym_move] = ACTIONS(819), - [anon_sym_read] = ACTIONS(819), - [anon_sym_workdir] = ACTIONS(819), - [anon_sym_write] = ACTIONS(819), - [anon_sym_from_json] = ACTIONS(819), - [anon_sym_to_json] = ACTIONS(819), - [anon_sym_to_string] = ACTIONS(819), - [anon_sym_to_float] = ACTIONS(819), - [anon_sym_bash] = ACTIONS(819), - [anon_sym_fish] = ACTIONS(819), - [anon_sym_raw] = ACTIONS(819), - [anon_sym_sh] = ACTIONS(819), - [anon_sym_zsh] = ACTIONS(819), - [anon_sym_random] = ACTIONS(819), - [anon_sym_random_boolean] = ACTIONS(819), - [anon_sym_random_float] = ACTIONS(819), - [anon_sym_random_integer] = ACTIONS(819), - [anon_sym_columns] = ACTIONS(819), - [anon_sym_rows] = ACTIONS(819), - [anon_sym_reverse] = ACTIONS(819), - }, - [28] = { - [sym_block] = STATE(317), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [29] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [30] = { - [sym_block] = STATE(297), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [31] = { - [sym_block] = STATE(381), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [32] = { - [sym_block] = STATE(408), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [33] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [34] = { - [sym_block] = STATE(382), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [35] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [36] = { - [sym_block] = STATE(317), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [37] = { - [sym_block] = STATE(382), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [38] = { - [sym_block] = STATE(381), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [39] = { - [sym_block] = STATE(408), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [40] = { - [sym_block] = STATE(379), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [41] = { - [sym_block] = STATE(363), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [42] = { - [sym_block] = STATE(301), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [43] = { - [sym_block] = STATE(371), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [44] = { - [sym_block] = STATE(365), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [45] = { - [sym_block] = STATE(334), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [46] = { - [sym_block] = STATE(328), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [47] = { - [sym_block] = STATE(327), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [48] = { - [sym_block] = STATE(321), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [49] = { - [sym_block] = STATE(293), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [50] = { - [sym_block] = STATE(294), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [51] = { - [sym_block] = STATE(583), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [52] = { - [sym_block] = STATE(365), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [53] = { - [sym_block] = STATE(296), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [54] = { - [sym_block] = STATE(296), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [55] = { - [sym_block] = STATE(301), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [56] = { - [sym_block] = STATE(297), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [57] = { - [sym_block] = STATE(334), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [58] = { - [sym_block] = STATE(646), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [59] = { - [sym_block] = STATE(682), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [60] = { - [sym_block] = STATE(294), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [61] = { - [sym_block] = STATE(293), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [62] = { - [sym_block] = STATE(647), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [63] = { - [sym_block] = STATE(408), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [64] = { - [sym_block] = STATE(648), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [65] = { - [sym_block] = STATE(328), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [66] = { - [sym_block] = STATE(327), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [67] = { - [sym_block] = STATE(620), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [68] = { - [sym_block] = STATE(317), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [69] = { - [sym_block] = STATE(566), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [70] = { - [sym_block] = STATE(564), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [71] = { - [sym_block] = STATE(301), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [72] = { - [sym_block] = STATE(371), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [73] = { - [sym_block] = STATE(321), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [74] = { - [sym_block] = STATE(321), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [75] = { - [sym_block] = STATE(293), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [76] = { - [sym_block] = STATE(294), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [77] = { - [sym_block] = STATE(382), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [78] = { - [sym_block] = STATE(688), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [79] = { - [sym_block] = STATE(381), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [80] = { - [sym_block] = STATE(379), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [81] = { - [sym_block] = STATE(363), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [82] = { - [sym_block] = STATE(371), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [83] = { - [sym_block] = STATE(365), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [84] = { - [sym_block] = STATE(296), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [85] = { - [sym_block] = STATE(297), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [86] = { - [sym_block] = STATE(690), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [87] = { - [sym_block] = STATE(327), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [88] = { - [sym_block] = STATE(328), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [89] = { - [sym_block] = STATE(334), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [90] = { - [sym_block] = STATE(334), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [91] = { - [sym_block] = STATE(301), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [92] = { - [sym_block] = STATE(666), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [93] = { - [sym_block] = STATE(408), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [94] = { - [sym_block] = STATE(328), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [95] = { - [sym_block] = STATE(327), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [96] = { - [sym_block] = STATE(317), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [97] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [98] = { - [sym_block] = STATE(382), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [99] = { - [sym_block] = STATE(381), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [100] = { - [sym_block] = STATE(321), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [101] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [102] = { - [sym_block] = STATE(685), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [103] = { - [sym_block] = STATE(379), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [104] = { - [sym_block] = STATE(293), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [105] = { - [sym_block] = STATE(672), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [106] = { - [sym_block] = STATE(363), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [107] = { - [sym_block] = STATE(379), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [108] = { - [sym_block] = STATE(559), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [109] = { - [sym_block] = STATE(675), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [110] = { - [sym_block] = STATE(371), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [111] = { - [sym_block] = STATE(297), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [112] = { - [sym_block] = STATE(296), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [113] = { - [sym_block] = STATE(363), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [114] = { - [sym_block] = STATE(365), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [115] = { - [sym_block] = STATE(294), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(341), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [116] = { - [sym_block] = STATE(684), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [117] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(377), - [sym_logic_operator] = STATE(665), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [118] = { - [sym_expression] = STATE(269), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(125), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment_operator] = STATE(254), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_elseif] = ACTIONS(822), - [anon_sym_else] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [119] = { - [sym_expression] = STATE(279), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(137), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment_operator] = STATE(253), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_elseif] = ACTIONS(822), - [anon_sym_else] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [120] = { - [sym_expression] = STATE(320), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(143), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment_operator] = STATE(256), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [121] = { - [sym_expression] = STATE(288), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(148), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment_operator] = STATE(259), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_elseif] = ACTIONS(822), - [anon_sym_else] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [122] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(153), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment_operator] = STATE(255), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_elseif] = ACTIONS(822), - [anon_sym_else] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [123] = { - [sym_expression] = STATE(350), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(162), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment_operator] = STATE(251), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [124] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(165), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment_operator] = STATE(252), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [125] = { - [sym_expression] = STATE(269), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(126), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_COMMA] = ACTIONS(830), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_elseif] = ACTIONS(830), - [anon_sym_else] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [126] = { - [sym_expression] = STATE(269), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(126), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(844), - [sym_float] = ACTIONS(847), - [sym_string] = ACTIONS(847), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(856), - [anon_sym_async] = ACTIONS(859), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_elseif] = ACTIONS(836), - [anon_sym_else] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(864), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(870), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), - }, - [127] = { - [sym_expression] = STATE(269), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(129), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_elseif] = ACTIONS(876), - [anon_sym_else] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [128] = { - [sym_expression] = STATE(745), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_elseif] = ACTIONS(880), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [129] = { - [sym_expression] = STATE(269), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(126), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(920), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(920), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_elseif] = ACTIONS(920), - [anon_sym_else] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [130] = { - [sym_expression] = STATE(745), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_elseif] = ACTIONS(924), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [131] = { - [sym_expression] = STATE(279), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(133), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(920), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(920), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_elseif] = ACTIONS(920), - [anon_sym_else] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [132] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment_operator] = STATE(250), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [133] = { - [sym_expression] = STATE(279), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(133), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(844), - [sym_float] = ACTIONS(847), - [sym_string] = ACTIONS(847), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(948), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_elseif] = ACTIONS(836), - [anon_sym_else] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(957), - [anon_sym_assert] = ACTIONS(960), - [anon_sym_assert_equal] = ACTIONS(960), - [anon_sym_download] = ACTIONS(960), - [anon_sym_help] = ACTIONS(960), - [anon_sym_length] = ACTIONS(960), - [anon_sym_output] = ACTIONS(960), - [anon_sym_output_error] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_append] = ACTIONS(960), - [anon_sym_metadata] = ACTIONS(960), - [anon_sym_move] = ACTIONS(960), - [anon_sym_read] = ACTIONS(960), - [anon_sym_workdir] = ACTIONS(960), - [anon_sym_write] = ACTIONS(960), - [anon_sym_from_json] = ACTIONS(960), - [anon_sym_to_json] = ACTIONS(960), - [anon_sym_to_string] = ACTIONS(960), - [anon_sym_to_float] = ACTIONS(960), - [anon_sym_bash] = ACTIONS(960), - [anon_sym_fish] = ACTIONS(960), - [anon_sym_raw] = ACTIONS(960), - [anon_sym_sh] = ACTIONS(960), - [anon_sym_zsh] = ACTIONS(960), - [anon_sym_random] = ACTIONS(960), - [anon_sym_random_boolean] = ACTIONS(960), - [anon_sym_random_float] = ACTIONS(960), - [anon_sym_random_integer] = ACTIONS(960), - [anon_sym_columns] = ACTIONS(960), - [anon_sym_rows] = ACTIONS(960), - [anon_sym_reverse] = ACTIONS(960), - }, - [134] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(153), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment_operator] = STATE(258), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_elseif] = ACTIONS(822), - [anon_sym_else] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [135] = { - [sym_expression] = STATE(279), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(131), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_elseif] = ACTIONS(876), - [anon_sym_else] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [136] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(138), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_elseif] = ACTIONS(924), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [137] = { - [sym_expression] = STATE(279), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(133), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_COMMA] = ACTIONS(830), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_elseif] = ACTIONS(830), - [anon_sym_else] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [138] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(138), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_elseif] = ACTIONS(880), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [139] = { - [sym_expression] = STATE(288), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(147), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(920), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_elseif] = ACTIONS(920), - [anon_sym_else] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [140] = { - [sym_expression] = STATE(740), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(149), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [141] = { - [sym_expression] = STATE(288), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(139), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_elseif] = ACTIONS(876), - [anon_sym_else] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [142] = { - [sym_expression] = STATE(320), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(144), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [143] = { - [sym_expression] = STATE(320), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(145), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_COMMA] = ACTIONS(830), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [144] = { - [sym_expression] = STATE(320), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(145), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(920), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(920), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [145] = { - [sym_expression] = STATE(320), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(145), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(971), - [sym_float] = ACTIONS(974), - [sym_string] = ACTIONS(974), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(983), - [anon_sym_async] = ACTIONS(986), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(989), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(995), - [anon_sym_assert_equal] = ACTIONS(995), - [anon_sym_download] = ACTIONS(995), - [anon_sym_help] = ACTIONS(995), - [anon_sym_length] = ACTIONS(995), - [anon_sym_output] = ACTIONS(995), - [anon_sym_output_error] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_append] = ACTIONS(995), - [anon_sym_metadata] = ACTIONS(995), - [anon_sym_move] = ACTIONS(995), - [anon_sym_read] = ACTIONS(995), - [anon_sym_workdir] = ACTIONS(995), - [anon_sym_write] = ACTIONS(995), - [anon_sym_from_json] = ACTIONS(995), - [anon_sym_to_json] = ACTIONS(995), - [anon_sym_to_string] = ACTIONS(995), - [anon_sym_to_float] = ACTIONS(995), - [anon_sym_bash] = ACTIONS(995), - [anon_sym_fish] = ACTIONS(995), - [anon_sym_raw] = ACTIONS(995), - [anon_sym_sh] = ACTIONS(995), - [anon_sym_zsh] = ACTIONS(995), - [anon_sym_random] = ACTIONS(995), - [anon_sym_random_boolean] = ACTIONS(995), - [anon_sym_random_float] = ACTIONS(995), - [anon_sym_random_integer] = ACTIONS(995), - [anon_sym_columns] = ACTIONS(995), - [anon_sym_rows] = ACTIONS(995), - [anon_sym_reverse] = ACTIONS(995), - }, - [146] = { - [sym_expression] = STATE(759), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(146), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_elseif] = ACTIONS(880), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [147] = { - [sym_expression] = STATE(288), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(147), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(836), - [sym_integer] = ACTIONS(844), - [sym_float] = ACTIONS(847), - [sym_string] = ACTIONS(847), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_map] = ACTIONS(856), - [anon_sym_async] = ACTIONS(859), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_elseif] = ACTIONS(836), - [anon_sym_else] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(864), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(870), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), - }, - [148] = { - [sym_expression] = STATE(288), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(147), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(830), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_elseif] = ACTIONS(830), - [anon_sym_else] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [149] = { - [sym_expression] = STATE(740), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(149), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [150] = { - [sym_expression] = STATE(759), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(146), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_elseif] = ACTIONS(924), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [151] = { - [sym_expression] = STATE(751), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_elseif] = ACTIONS(924), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [152] = { - [sym_expression] = STATE(752), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [153] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(155), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(830), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_elseif] = ACTIONS(830), - [anon_sym_else] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [154] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(159), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_elseif] = ACTIONS(876), - [anon_sym_else] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [155] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(155), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(836), - [sym_integer] = ACTIONS(844), - [sym_float] = ACTIONS(847), - [sym_string] = ACTIONS(847), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_map] = ACTIONS(948), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_elseif] = ACTIONS(836), - [anon_sym_else] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(957), - [anon_sym_assert] = ACTIONS(960), - [anon_sym_assert_equal] = ACTIONS(960), - [anon_sym_download] = ACTIONS(960), - [anon_sym_help] = ACTIONS(960), - [anon_sym_length] = ACTIONS(960), - [anon_sym_output] = ACTIONS(960), - [anon_sym_output_error] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_append] = ACTIONS(960), - [anon_sym_metadata] = ACTIONS(960), - [anon_sym_move] = ACTIONS(960), - [anon_sym_read] = ACTIONS(960), - [anon_sym_workdir] = ACTIONS(960), - [anon_sym_write] = ACTIONS(960), - [anon_sym_from_json] = ACTIONS(960), - [anon_sym_to_json] = ACTIONS(960), - [anon_sym_to_string] = ACTIONS(960), - [anon_sym_to_float] = ACTIONS(960), - [anon_sym_bash] = ACTIONS(960), - [anon_sym_fish] = ACTIONS(960), - [anon_sym_raw] = ACTIONS(960), - [anon_sym_sh] = ACTIONS(960), - [anon_sym_zsh] = ACTIONS(960), - [anon_sym_random] = ACTIONS(960), - [anon_sym_random_boolean] = ACTIONS(960), - [anon_sym_random_float] = ACTIONS(960), - [anon_sym_random_integer] = ACTIONS(960), - [anon_sym_columns] = ACTIONS(960), - [anon_sym_rows] = ACTIONS(960), - [anon_sym_reverse] = ACTIONS(960), - }, - [156] = { - [sym_expression] = STATE(350), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(156), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(971), - [sym_float] = ACTIONS(974), - [sym_string] = ACTIONS(974), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(1007), - [anon_sym_assert] = ACTIONS(1010), - [anon_sym_assert_equal] = ACTIONS(1010), - [anon_sym_download] = ACTIONS(1010), - [anon_sym_help] = ACTIONS(1010), - [anon_sym_length] = ACTIONS(1010), - [anon_sym_output] = ACTIONS(1010), - [anon_sym_output_error] = ACTIONS(1010), - [anon_sym_type] = ACTIONS(1010), - [anon_sym_append] = ACTIONS(1010), - [anon_sym_metadata] = ACTIONS(1010), - [anon_sym_move] = ACTIONS(1010), - [anon_sym_read] = ACTIONS(1010), - [anon_sym_workdir] = ACTIONS(1010), - [anon_sym_write] = ACTIONS(1010), - [anon_sym_from_json] = ACTIONS(1010), - [anon_sym_to_json] = ACTIONS(1010), - [anon_sym_to_string] = ACTIONS(1010), - [anon_sym_to_float] = ACTIONS(1010), - [anon_sym_bash] = ACTIONS(1010), - [anon_sym_fish] = ACTIONS(1010), - [anon_sym_raw] = ACTIONS(1010), - [anon_sym_sh] = ACTIONS(1010), - [anon_sym_zsh] = ACTIONS(1010), - [anon_sym_random] = ACTIONS(1010), - [anon_sym_random_boolean] = ACTIONS(1010), - [anon_sym_random_float] = ACTIONS(1010), - [anon_sym_random_integer] = ACTIONS(1010), - [anon_sym_columns] = ACTIONS(1010), - [anon_sym_rows] = ACTIONS(1010), - [anon_sym_reverse] = ACTIONS(1010), - }, - [157] = { - [sym_expression] = STATE(751), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_elseif] = ACTIONS(880), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [158] = { - [sym_expression] = STATE(350), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(156), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(920), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(920), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [159] = { - [sym_expression] = STATE(326), - [sym__expression_kind] = STATE(341), - [aux_sym__expression_list] = STATE(155), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(832), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(920), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_elseif] = ACTIONS(920), - [anon_sym_else] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [160] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment_operator] = STATE(257), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(822), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(824), - [sym_float] = ACTIONS(822), - [sym_string] = ACTIONS(822), - [anon_sym_true] = ACTIONS(824), - [anon_sym_false] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_map] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_await] = ACTIONS(824), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_PLUS_EQ] = ACTIONS(828), - [anon_sym_DASH_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_while] = ACTIONS(824), - [anon_sym_for] = ACTIONS(824), - [anon_sym_transform] = ACTIONS(824), - [anon_sym_filter] = ACTIONS(824), - [anon_sym_find] = ACTIONS(824), - [anon_sym_remove] = ACTIONS(824), - [anon_sym_reduce] = ACTIONS(824), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_table] = ACTIONS(824), - [anon_sym_assert] = ACTIONS(824), - [anon_sym_assert_equal] = ACTIONS(824), - [anon_sym_download] = ACTIONS(824), - [anon_sym_help] = ACTIONS(824), - [anon_sym_length] = ACTIONS(824), - [anon_sym_output] = ACTIONS(824), - [anon_sym_output_error] = ACTIONS(824), - [anon_sym_type] = ACTIONS(824), - [anon_sym_append] = ACTIONS(824), - [anon_sym_metadata] = ACTIONS(824), - [anon_sym_move] = ACTIONS(824), - [anon_sym_read] = ACTIONS(824), - [anon_sym_workdir] = ACTIONS(824), - [anon_sym_write] = ACTIONS(824), - [anon_sym_from_json] = ACTIONS(824), - [anon_sym_to_json] = ACTIONS(824), - [anon_sym_to_string] = ACTIONS(824), - [anon_sym_to_float] = ACTIONS(824), - [anon_sym_bash] = ACTIONS(824), - [anon_sym_fish] = ACTIONS(824), - [anon_sym_raw] = ACTIONS(824), - [anon_sym_sh] = ACTIONS(824), - [anon_sym_zsh] = ACTIONS(824), - [anon_sym_random] = ACTIONS(824), - [anon_sym_random_boolean] = ACTIONS(824), - [anon_sym_random_float] = ACTIONS(824), - [anon_sym_random_integer] = ACTIONS(824), - [anon_sym_columns] = ACTIONS(824), - [anon_sym_rows] = ACTIONS(824), - [anon_sym_reverse] = ACTIONS(824), - }, - [161] = { - [sym_expression] = STATE(350), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(158), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [162] = { - [sym_expression] = STATE(350), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(156), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_COMMA] = ACTIONS(830), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [163] = { - [sym_expression] = STATE(752), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [164] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(166), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [165] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(167), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(830), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [166] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(167), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(920), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [167] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(167), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(836), - [sym_integer] = ACTIONS(971), - [sym_float] = ACTIONS(974), - [sym_string] = ACTIONS(974), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_map] = ACTIONS(983), - [anon_sym_async] = ACTIONS(986), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(989), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(995), - [anon_sym_assert_equal] = ACTIONS(995), - [anon_sym_download] = ACTIONS(995), - [anon_sym_help] = ACTIONS(995), - [anon_sym_length] = ACTIONS(995), - [anon_sym_output] = ACTIONS(995), - [anon_sym_output_error] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_append] = ACTIONS(995), - [anon_sym_metadata] = ACTIONS(995), - [anon_sym_move] = ACTIONS(995), - [anon_sym_read] = ACTIONS(995), - [anon_sym_workdir] = ACTIONS(995), - [anon_sym_write] = ACTIONS(995), - [anon_sym_from_json] = ACTIONS(995), - [anon_sym_to_json] = ACTIONS(995), - [anon_sym_to_string] = ACTIONS(995), - [anon_sym_to_float] = ACTIONS(995), - [anon_sym_bash] = ACTIONS(995), - [anon_sym_fish] = ACTIONS(995), - [anon_sym_raw] = ACTIONS(995), - [anon_sym_sh] = ACTIONS(995), - [anon_sym_zsh] = ACTIONS(995), - [anon_sym_random] = ACTIONS(995), - [anon_sym_random_boolean] = ACTIONS(995), - [anon_sym_random_float] = ACTIONS(995), - [anon_sym_random_integer] = ACTIONS(995), - [anon_sym_columns] = ACTIONS(995), - [anon_sym_rows] = ACTIONS(995), - [anon_sym_reverse] = ACTIONS(995), - }, - [168] = { - [sym_expression] = STATE(741), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [169] = { - [sym_expression] = STATE(741), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [170] = { - [sym_statement] = STATE(170), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(266), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(272), - [sym_string] = ACTIONS(272), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_map] = ACTIONS(678), - [anon_sym_async] = ACTIONS(681), - [anon_sym_await] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_elseif] = ACTIONS(261), - [anon_sym_else] = ACTIONS(290), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_EQ_GT] = ACTIONS(690), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_transform] = ACTIONS(1031), - [anon_sym_filter] = ACTIONS(1034), - [anon_sym_find] = ACTIONS(1037), - [anon_sym_remove] = ACTIONS(1040), - [anon_sym_reduce] = ACTIONS(1043), - [anon_sym_select] = ACTIONS(1046), - [anon_sym_insert] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_table] = ACTIONS(720), - [anon_sym_assert] = ACTIONS(723), - [anon_sym_assert_equal] = ACTIONS(723), - [anon_sym_download] = ACTIONS(723), - [anon_sym_help] = ACTIONS(723), - [anon_sym_length] = ACTIONS(723), - [anon_sym_output] = ACTIONS(723), - [anon_sym_output_error] = ACTIONS(723), - [anon_sym_type] = ACTIONS(723), - [anon_sym_append] = ACTIONS(723), - [anon_sym_metadata] = ACTIONS(723), - [anon_sym_move] = ACTIONS(723), - [anon_sym_read] = ACTIONS(723), - [anon_sym_workdir] = ACTIONS(723), - [anon_sym_write] = ACTIONS(723), - [anon_sym_from_json] = ACTIONS(723), - [anon_sym_to_json] = ACTIONS(723), - [anon_sym_to_string] = ACTIONS(723), - [anon_sym_to_float] = ACTIONS(723), - [anon_sym_bash] = ACTIONS(723), - [anon_sym_fish] = ACTIONS(723), - [anon_sym_raw] = ACTIONS(723), - [anon_sym_sh] = ACTIONS(723), - [anon_sym_zsh] = ACTIONS(723), - [anon_sym_random] = ACTIONS(723), - [anon_sym_random_boolean] = ACTIONS(723), - [anon_sym_random_float] = ACTIONS(723), - [anon_sym_random_integer] = ACTIONS(723), - [anon_sym_columns] = ACTIONS(723), - [anon_sym_rows] = ACTIONS(723), - [anon_sym_reverse] = ACTIONS(723), - }, - [171] = { - [sym_statement] = STATE(170), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_if] = ACTIONS(25), - [anon_sym_elseif] = ACTIONS(373), - [anon_sym_else] = ACTIONS(375), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [172] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(830), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(830), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_BANG_EQ] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(830), - [anon_sym_if] = ACTIONS(834), - [anon_sym_match] = ACTIONS(834), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_transform] = ACTIONS(834), - [anon_sym_filter] = ACTIONS(834), - [anon_sym_find] = ACTIONS(834), - [anon_sym_remove] = ACTIONS(834), - [anon_sym_reduce] = ACTIONS(834), - [anon_sym_select] = ACTIONS(834), - [anon_sym_insert] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [173] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(177), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_if] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_transform] = ACTIONS(878), - [anon_sym_filter] = ACTIONS(878), - [anon_sym_find] = ACTIONS(878), - [anon_sym_remove] = ACTIONS(878), - [anon_sym_reduce] = ACTIONS(878), - [anon_sym_select] = ACTIONS(878), - [anon_sym_insert] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [174] = { - [sym_expression] = STATE(750), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_if] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [175] = { - [sym_expression] = STATE(750), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(924), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_if] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [176] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(836), - [sym_integer] = ACTIONS(971), - [sym_float] = ACTIONS(974), - [sym_string] = ACTIONS(974), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_map] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_table] = ACTIONS(1007), - [anon_sym_assert] = ACTIONS(1010), - [anon_sym_assert_equal] = ACTIONS(1010), - [anon_sym_download] = ACTIONS(1010), - [anon_sym_help] = ACTIONS(1010), - [anon_sym_length] = ACTIONS(1010), - [anon_sym_output] = ACTIONS(1010), - [anon_sym_output_error] = ACTIONS(1010), - [anon_sym_type] = ACTIONS(1010), - [anon_sym_append] = ACTIONS(1010), - [anon_sym_metadata] = ACTIONS(1010), - [anon_sym_move] = ACTIONS(1010), - [anon_sym_read] = ACTIONS(1010), - [anon_sym_workdir] = ACTIONS(1010), - [anon_sym_write] = ACTIONS(1010), - [anon_sym_from_json] = ACTIONS(1010), - [anon_sym_to_json] = ACTIONS(1010), - [anon_sym_to_string] = ACTIONS(1010), - [anon_sym_to_float] = ACTIONS(1010), - [anon_sym_bash] = ACTIONS(1010), - [anon_sym_fish] = ACTIONS(1010), - [anon_sym_raw] = ACTIONS(1010), - [anon_sym_sh] = ACTIONS(1010), - [anon_sym_zsh] = ACTIONS(1010), - [anon_sym_random] = ACTIONS(1010), - [anon_sym_random_boolean] = ACTIONS(1010), - [anon_sym_random_float] = ACTIONS(1010), - [anon_sym_random_integer] = ACTIONS(1010), - [anon_sym_columns] = ACTIONS(1010), - [anon_sym_rows] = ACTIONS(1010), - [anon_sym_reverse] = ACTIONS(1010), - }, - [177] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(920), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_if] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_transform] = ACTIONS(922), - [anon_sym_filter] = ACTIONS(922), - [anon_sym_find] = ACTIONS(922), - [anon_sym_remove] = ACTIONS(922), - [anon_sym_reduce] = ACTIONS(922), - [anon_sym_select] = ACTIONS(922), - [anon_sym_insert] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [178] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [179] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_identifier] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(511), - [sym_integer] = ACTIONS(514), - [sym_float] = ACTIONS(517), - [sym_string] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_map] = ACTIONS(777), - [anon_sym_async] = ACTIONS(780), - [anon_sym_await] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(786), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_transform] = ACTIONS(1067), - [anon_sym_filter] = ACTIONS(1070), - [anon_sym_find] = ACTIONS(1073), - [anon_sym_remove] = ACTIONS(1076), - [anon_sym_reduce] = ACTIONS(1079), - [anon_sym_select] = ACTIONS(1082), - [anon_sym_insert] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_table] = ACTIONS(816), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_assert_equal] = ACTIONS(819), - [anon_sym_download] = ACTIONS(819), - [anon_sym_help] = ACTIONS(819), - [anon_sym_length] = ACTIONS(819), - [anon_sym_output] = ACTIONS(819), - [anon_sym_output_error] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_append] = ACTIONS(819), - [anon_sym_metadata] = ACTIONS(819), - [anon_sym_move] = ACTIONS(819), - [anon_sym_read] = ACTIONS(819), - [anon_sym_workdir] = ACTIONS(819), - [anon_sym_write] = ACTIONS(819), - [anon_sym_from_json] = ACTIONS(819), - [anon_sym_to_json] = ACTIONS(819), - [anon_sym_to_string] = ACTIONS(819), - [anon_sym_to_float] = ACTIONS(819), - [anon_sym_bash] = ACTIONS(819), - [anon_sym_fish] = ACTIONS(819), - [anon_sym_raw] = ACTIONS(819), - [anon_sym_sh] = ACTIONS(819), - [anon_sym_zsh] = ACTIONS(819), - [anon_sym_random] = ACTIONS(819), - [anon_sym_random_boolean] = ACTIONS(819), - [anon_sym_random_float] = ACTIONS(819), - [anon_sym_random_integer] = ACTIONS(819), - [anon_sym_columns] = ACTIONS(819), - [anon_sym_rows] = ACTIONS(819), - [anon_sym_reverse] = ACTIONS(819), - }, - [180] = { - [sym_block] = STATE(701), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [181] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [182] = { - [sym_block] = STATE(333), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [183] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [184] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [185] = { - [sym_block] = STATE(366), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [186] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [187] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [188] = { - [sym_block] = STATE(366), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [189] = { - [sym_block] = STATE(329), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [190] = { - [sym_block] = STATE(319), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [191] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [192] = { - [sym_block] = STATE(722), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [193] = { - [sym_block] = STATE(701), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [194] = { - [sym_block] = STATE(645), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [195] = { - [sym_block] = STATE(401), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [196] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [197] = { - [sym_block] = STATE(378), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [198] = { - [sym_block] = STATE(366), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [199] = { - [sym_block] = STATE(394), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [200] = { - [sym_block] = STATE(345), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [201] = { - [sym_block] = STATE(322), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [202] = { - [sym_block] = STATE(323), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [203] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(18), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [204] = { - [sym_block] = STATE(319), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [205] = { - [sym_block] = STATE(329), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [206] = { - [sym_block] = STATE(333), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [207] = { - [sym_block] = STATE(333), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [208] = { - [sym_block] = STATE(319), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [209] = { - [sym_block] = STATE(333), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [210] = { - [sym_block] = STATE(322), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [211] = { - [sym_block] = STATE(329), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [212] = { - [sym_block] = STATE(683), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [213] = { - [sym_block] = STATE(345), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [214] = { - [sym_block] = STATE(378), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [215] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [216] = { - [sym_block] = STATE(401), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [217] = { - [sym_block] = STATE(394), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [218] = { - [sym_block] = STATE(323), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [219] = { - [sym_block] = STATE(322), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [220] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [221] = { - [sym_block] = STATE(345), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [222] = { - [sym_block] = STATE(394), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [223] = { - [sym_block] = STATE(322), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [224] = { - [sym_block] = STATE(366), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [225] = { - [sym_block] = STATE(329), - [sym_statement] = STATE(20), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(20), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [226] = { - [sym_block] = STATE(319), - [sym_statement] = STATE(16), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [227] = { - [sym_block] = STATE(323), - [sym_statement] = STATE(9), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [aux_sym_block_repeat1] = STATE(9), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [228] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [229] = { - [sym_block] = STATE(401), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [230] = { - [sym_block] = STATE(722), - [sym_statement] = STATE(24), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [231] = { - [sym_block] = STATE(378), - [sym_statement] = STATE(22), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [232] = { - [sym_block] = STATE(345), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [233] = { - [sym_block] = STATE(323), - [sym_statement] = STATE(12), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [234] = { - [sym_block] = STATE(649), - [sym_statement] = STATE(171), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [aux_sym_block_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [235] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(178), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [236] = { - [sym_block] = STATE(394), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [237] = { - [sym_block] = STATE(378), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [238] = { - [sym_block] = STATE(401), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [239] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(26), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [240] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [241] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [242] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [243] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [244] = { - [sym_statement] = STATE(179), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [245] = { - [sym_statement] = STATE(244), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [246] = { - [sym_statement] = STATE(243), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [247] = { - [sym_statement] = STATE(241), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [248] = { - [sym_statement] = STATE(242), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(242), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [249] = { - [sym_statement] = STATE(240), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [aux_sym_block_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [250] = { - [sym_statement] = STATE(406), - [sym_expression] = STATE(426), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(310), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [sym_identifier] = ACTIONS(486), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_transform] = ACTIONS(496), - [anon_sym_filter] = ACTIONS(498), - [anon_sym_find] = ACTIONS(500), - [anon_sym_remove] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_select] = ACTIONS(506), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [251] = { - [sym_statement] = STATE(406), - [sym_expression] = STATE(348), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(271), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(235), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_while] = ACTIONS(239), - [anon_sym_for] = ACTIONS(241), - [anon_sym_transform] = ACTIONS(243), - [anon_sym_filter] = ACTIONS(245), - [anon_sym_find] = ACTIONS(247), - [anon_sym_remove] = ACTIONS(249), - [anon_sym_reduce] = ACTIONS(251), - [anon_sym_select] = ACTIONS(253), - [anon_sym_insert] = ACTIONS(255), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [252] = { - [sym_statement] = STATE(406), - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(280), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(834), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(164), - [sym_identifier] = ACTIONS(452), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(454), - [anon_sym_async] = ACTIONS(456), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_while] = ACTIONS(464), - [anon_sym_for] = ACTIONS(466), - [anon_sym_transform] = ACTIONS(468), - [anon_sym_filter] = ACTIONS(470), - [anon_sym_find] = ACTIONS(472), - [anon_sym_remove] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_select] = ACTIONS(478), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_assert_equal] = ACTIONS(484), - [anon_sym_download] = ACTIONS(484), - [anon_sym_help] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_output] = ACTIONS(484), - [anon_sym_output_error] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_append] = ACTIONS(484), - [anon_sym_metadata] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_read] = ACTIONS(484), - [anon_sym_workdir] = ACTIONS(484), - [anon_sym_write] = ACTIONS(484), - [anon_sym_from_json] = ACTIONS(484), - [anon_sym_to_json] = ACTIONS(484), - [anon_sym_to_string] = ACTIONS(484), - [anon_sym_to_float] = ACTIONS(484), - [anon_sym_bash] = ACTIONS(484), - [anon_sym_fish] = ACTIONS(484), - [anon_sym_raw] = ACTIONS(484), - [anon_sym_sh] = ACTIONS(484), - [anon_sym_zsh] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_random_boolean] = ACTIONS(484), - [anon_sym_random_float] = ACTIONS(484), - [anon_sym_random_integer] = ACTIONS(484), - [anon_sym_columns] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - }, - [253] = { - [sym_statement] = STATE(335), - [sym_expression] = STATE(284), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(276), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(951), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(135), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(127), - [anon_sym_match] = ACTIONS(129), - [anon_sym_EQ_GT] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_transform] = ACTIONS(137), - [anon_sym_filter] = ACTIONS(139), - [anon_sym_find] = ACTIONS(141), - [anon_sym_remove] = ACTIONS(143), - [anon_sym_reduce] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_insert] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(151), - [anon_sym_assert] = ACTIONS(153), - [anon_sym_assert_equal] = ACTIONS(153), - [anon_sym_download] = ACTIONS(153), - [anon_sym_help] = ACTIONS(153), - [anon_sym_length] = ACTIONS(153), - [anon_sym_output] = ACTIONS(153), - [anon_sym_output_error] = ACTIONS(153), - [anon_sym_type] = ACTIONS(153), - [anon_sym_append] = ACTIONS(153), - [anon_sym_metadata] = ACTIONS(153), - [anon_sym_move] = ACTIONS(153), - [anon_sym_read] = ACTIONS(153), - [anon_sym_workdir] = ACTIONS(153), - [anon_sym_write] = ACTIONS(153), - [anon_sym_from_json] = ACTIONS(153), - [anon_sym_to_json] = ACTIONS(153), - [anon_sym_to_string] = ACTIONS(153), - [anon_sym_to_float] = ACTIONS(153), - [anon_sym_bash] = ACTIONS(153), - [anon_sym_fish] = ACTIONS(153), - [anon_sym_raw] = ACTIONS(153), - [anon_sym_sh] = ACTIONS(153), - [anon_sym_zsh] = ACTIONS(153), - [anon_sym_random] = ACTIONS(153), - [anon_sym_random_boolean] = ACTIONS(153), - [anon_sym_random_float] = ACTIONS(153), - [anon_sym_random_integer] = ACTIONS(153), - [anon_sym_columns] = ACTIONS(153), - [anon_sym_rows] = ACTIONS(153), - [anon_sym_reverse] = ACTIONS(153), - }, - [254] = { - [sym_statement] = STATE(335), - [sym_expression] = STATE(265), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(263), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(849), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(127), - [sym_identifier] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(91), - [anon_sym_EQ_GT] = ACTIONS(93), - [anon_sym_while] = ACTIONS(95), - [anon_sym_for] = ACTIONS(97), - [anon_sym_transform] = ACTIONS(99), - [anon_sym_filter] = ACTIONS(101), - [anon_sym_find] = ACTIONS(103), - [anon_sym_remove] = ACTIONS(105), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_select] = ACTIONS(109), - [anon_sym_insert] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_assert_equal] = ACTIONS(117), - [anon_sym_download] = ACTIONS(117), - [anon_sym_help] = ACTIONS(117), - [anon_sym_length] = ACTIONS(117), - [anon_sym_output] = ACTIONS(117), - [anon_sym_output_error] = ACTIONS(117), - [anon_sym_type] = ACTIONS(117), - [anon_sym_append] = ACTIONS(117), - [anon_sym_metadata] = ACTIONS(117), - [anon_sym_move] = ACTIONS(117), - [anon_sym_read] = ACTIONS(117), - [anon_sym_workdir] = ACTIONS(117), - [anon_sym_write] = ACTIONS(117), - [anon_sym_from_json] = ACTIONS(117), - [anon_sym_to_json] = ACTIONS(117), - [anon_sym_to_string] = ACTIONS(117), - [anon_sym_to_float] = ACTIONS(117), - [anon_sym_bash] = ACTIONS(117), - [anon_sym_fish] = ACTIONS(117), - [anon_sym_raw] = ACTIONS(117), - [anon_sym_sh] = ACTIONS(117), - [anon_sym_zsh] = ACTIONS(117), - [anon_sym_random] = ACTIONS(117), - [anon_sym_random_boolean] = ACTIONS(117), - [anon_sym_random_float] = ACTIONS(117), - [anon_sym_random_integer] = ACTIONS(117), - [anon_sym_columns] = ACTIONS(117), - [anon_sym_rows] = ACTIONS(117), - [anon_sym_reverse] = ACTIONS(117), - }, - [255] = { - [sym_statement] = STATE(335), - [sym_expression] = STATE(362), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(343), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [sym_identifier] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_transform] = ACTIONS(355), - [anon_sym_filter] = ACTIONS(357), - [anon_sym_find] = ACTIONS(359), - [anon_sym_remove] = ACTIONS(361), - [anon_sym_reduce] = ACTIONS(363), - [anon_sym_select] = ACTIONS(365), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [256] = { - [sym_statement] = STATE(406), - [sym_expression] = STATE(306), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(396), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(396), - [sym_if_else] = STATE(396), - [sym_if] = STATE(260), - [sym_match] = STATE(396), - [sym_while] = STATE(396), - [sym_for] = STATE(396), - [sym_transform] = STATE(396), - [sym_filter] = STATE(396), - [sym_find] = STATE(396), - [sym_remove] = STATE(396), - [sym_reduce] = STATE(396), - [sym_select] = STATE(396), - [sym_insert] = STATE(396), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [sym_identifier] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_await] = ACTIONS(197), - [anon_sym_if] = ACTIONS(87), - [anon_sym_match] = ACTIONS(201), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_while] = ACTIONS(205), - [anon_sym_for] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [257] = { - [sym_statement] = STATE(680), - [sym_expression] = STATE(437), - [sym__expression_kind] = STATE(377), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_await] = STATE(689), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_assignment] = STATE(689), - [sym_if_else] = STATE(689), - [sym_if] = STATE(441), - [sym_match] = STATE(689), - [sym_while] = STATE(689), - [sym_for] = STATE(689), - [sym_transform] = STATE(689), - [sym_filter] = STATE(689), - [sym_find] = STATE(689), - [sym_remove] = STATE(689), - [sym_reduce] = STATE(689), - [sym_select] = STATE(689), - [sym_insert] = STATE(689), - [sym_identifier_list] = STATE(934), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(173), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(19), - [anon_sym_async] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_EQ_GT] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_transform] = ACTIONS(35), - [anon_sym_filter] = ACTIONS(37), - [anon_sym_find] = ACTIONS(39), - [anon_sym_remove] = ACTIONS(41), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_select] = ACTIONS(45), - [anon_sym_insert] = ACTIONS(47), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(51), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [258] = { - [sym_statement] = STATE(579), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(464), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(464), - [sym_if_else] = STATE(464), - [sym_if] = STATE(438), - [sym_match] = STATE(464), - [sym_while] = STATE(464), - [sym_for] = STATE(464), - [sym_transform] = STATE(464), - [sym_filter] = STATE(464), - [sym_find] = STATE(464), - [sym_remove] = STATE(464), - [sym_reduce] = STATE(464), - [sym_select] = STATE(464), - [sym_insert] = STATE(464), - [sym_identifier_list] = STATE(836), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(154), - [sym_identifier] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_await] = ACTIONS(381), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(383), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_transform] = ACTIONS(389), - [anon_sym_filter] = ACTIONS(391), - [anon_sym_find] = ACTIONS(393), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(397), - [anon_sym_select] = ACTIONS(399), - [anon_sym_insert] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(369), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_assert_equal] = ACTIONS(371), - [anon_sym_download] = ACTIONS(371), - [anon_sym_help] = ACTIONS(371), - [anon_sym_length] = ACTIONS(371), - [anon_sym_output] = ACTIONS(371), - [anon_sym_output_error] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_append] = ACTIONS(371), - [anon_sym_metadata] = ACTIONS(371), - [anon_sym_move] = ACTIONS(371), - [anon_sym_read] = ACTIONS(371), - [anon_sym_workdir] = ACTIONS(371), - [anon_sym_write] = ACTIONS(371), - [anon_sym_from_json] = ACTIONS(371), - [anon_sym_to_json] = ACTIONS(371), - [anon_sym_to_string] = ACTIONS(371), - [anon_sym_to_float] = ACTIONS(371), - [anon_sym_bash] = ACTIONS(371), - [anon_sym_fish] = ACTIONS(371), - [anon_sym_raw] = ACTIONS(371), - [anon_sym_sh] = ACTIONS(371), - [anon_sym_zsh] = ACTIONS(371), - [anon_sym_random] = ACTIONS(371), - [anon_sym_random_boolean] = ACTIONS(371), - [anon_sym_random_float] = ACTIONS(371), - [anon_sym_random_integer] = ACTIONS(371), - [anon_sym_columns] = ACTIONS(371), - [anon_sym_rows] = ACTIONS(371), - [anon_sym_reverse] = ACTIONS(371), - }, - [259] = { - [sym_statement] = STATE(335), - [sym_expression] = STATE(305), - [sym__expression_kind] = STATE(341), - [sym_value] = STATE(341), - [sym_boolean] = STATE(336), - [sym_list] = STATE(336), - [sym_map] = STATE(336), - [sym_future] = STATE(336), - [sym_await] = STATE(312), - [sym_index] = STATE(341), - [sym_math] = STATE(341), - [sym_logic] = STATE(341), - [sym_assignment] = STATE(312), - [sym_if_else] = STATE(312), - [sym_if] = STATE(282), - [sym_match] = STATE(312), - [sym_while] = STATE(312), - [sym_for] = STATE(312), - [sym_transform] = STATE(312), - [sym_filter] = STATE(312), - [sym_find] = STATE(312), - [sym_remove] = STATE(312), - [sym_reduce] = STATE(312), - [sym_select] = STATE(312), - [sym_insert] = STATE(312), - [sym_identifier_list] = STATE(877), - [sym_table] = STATE(336), - [sym_function] = STATE(336), - [sym_function_call] = STATE(341), - [sym__context_defined_function] = STATE(292), - [sym_built_in_function] = STATE(292), - [sym__built_in_function_name] = STATE(141), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(61), - [sym_integer] = ACTIONS(63), - [sym_float] = ACTIONS(65), - [sym_string] = ACTIONS(65), - [anon_sym_true] = ACTIONS(67), - [anon_sym_false] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_map] = ACTIONS(157), - [anon_sym_async] = ACTIONS(159), - [anon_sym_await] = ACTIONS(75), - [anon_sym_if] = ACTIONS(163), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_transform] = ACTIONS(173), - [anon_sym_filter] = ACTIONS(175), - [anon_sym_find] = ACTIONS(177), - [anon_sym_remove] = ACTIONS(179), - [anon_sym_reduce] = ACTIONS(181), - [anon_sym_select] = ACTIONS(183), - [anon_sym_insert] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(187), - [anon_sym_assert] = ACTIONS(189), - [anon_sym_assert_equal] = ACTIONS(189), - [anon_sym_download] = ACTIONS(189), - [anon_sym_help] = ACTIONS(189), - [anon_sym_length] = ACTIONS(189), - [anon_sym_output] = ACTIONS(189), - [anon_sym_output_error] = ACTIONS(189), - [anon_sym_type] = ACTIONS(189), - [anon_sym_append] = ACTIONS(189), - [anon_sym_metadata] = ACTIONS(189), - [anon_sym_move] = ACTIONS(189), - [anon_sym_read] = ACTIONS(189), - [anon_sym_workdir] = ACTIONS(189), - [anon_sym_write] = ACTIONS(189), - [anon_sym_from_json] = ACTIONS(189), - [anon_sym_to_json] = ACTIONS(189), - [anon_sym_to_string] = ACTIONS(189), - [anon_sym_to_float] = ACTIONS(189), - [anon_sym_bash] = ACTIONS(189), - [anon_sym_fish] = ACTIONS(189), - [anon_sym_raw] = ACTIONS(189), - [anon_sym_sh] = ACTIONS(189), - [anon_sym_zsh] = ACTIONS(189), - [anon_sym_random] = ACTIONS(189), - [anon_sym_random_boolean] = ACTIONS(189), - [anon_sym_random_float] = ACTIONS(189), - [anon_sym_random_integer] = ACTIONS(189), - [anon_sym_columns] = ACTIONS(189), - [anon_sym_rows] = ACTIONS(189), - [anon_sym_reverse] = ACTIONS(189), - }, - [260] = { - [sym_else_if] = STATE(262), - [sym_else] = STATE(403), - [aux_sym_if_else_repeat1] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_RBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [261] = { - [sym_else_if] = STATE(274), - [sym_else] = STATE(332), - [aux_sym_if_else_repeat1] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [262] = { - [sym_else_if] = STATE(274), - [sym_else] = STATE(405), - [aux_sym_if_else_repeat1] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [263] = { - [sym_else_if] = STATE(261), - [sym_else] = STATE(337), - [aux_sym_if_else_repeat1] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_RBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [264] = { - [sym_else_if] = STATE(285), - [sym_else] = STATE(405), - [aux_sym_if_else_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [265] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [266] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_elseif] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [267] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_elseif] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [268] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_elseif] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [269] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1137), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_elseif] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [270] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_COMMA] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_RBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_elseif] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [271] = { - [sym_else_if] = STATE(264), - [sym_else] = STATE(403), - [aux_sym_if_else_repeat1] = STATE(264), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_RBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [272] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_COMMA] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_RBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_elseif] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [273] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_COMMA] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_RBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_elseif] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [274] = { - [sym_else_if] = STATE(274), - [aux_sym_if_else_repeat1] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [sym_integer] = ACTIONS(1152), - [sym_float] = ACTIONS(1150), - [sym_string] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_map] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_elseif] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_transform] = ACTIONS(1152), - [anon_sym_filter] = ACTIONS(1152), - [anon_sym_find] = ACTIONS(1152), - [anon_sym_remove] = ACTIONS(1152), - [anon_sym_reduce] = ACTIONS(1152), - [anon_sym_select] = ACTIONS(1152), - [anon_sym_insert] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_table] = ACTIONS(1152), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_assert_equal] = ACTIONS(1152), - [anon_sym_download] = ACTIONS(1152), - [anon_sym_help] = ACTIONS(1152), - [anon_sym_length] = ACTIONS(1152), - [anon_sym_output] = ACTIONS(1152), - [anon_sym_output_error] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_append] = ACTIONS(1152), - [anon_sym_metadata] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [anon_sym_read] = ACTIONS(1152), - [anon_sym_workdir] = ACTIONS(1152), - [anon_sym_write] = ACTIONS(1152), - [anon_sym_from_json] = ACTIONS(1152), - [anon_sym_to_json] = ACTIONS(1152), - [anon_sym_to_string] = ACTIONS(1152), - [anon_sym_to_float] = ACTIONS(1152), - [anon_sym_bash] = ACTIONS(1152), - [anon_sym_fish] = ACTIONS(1152), - [anon_sym_raw] = ACTIONS(1152), - [anon_sym_sh] = ACTIONS(1152), - [anon_sym_zsh] = ACTIONS(1152), - [anon_sym_random] = ACTIONS(1152), - [anon_sym_random_boolean] = ACTIONS(1152), - [anon_sym_random_float] = ACTIONS(1152), - [anon_sym_random_integer] = ACTIONS(1152), - [anon_sym_columns] = ACTIONS(1152), - [anon_sym_rows] = ACTIONS(1152), - [anon_sym_reverse] = ACTIONS(1152), - }, - [275] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_elseif] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [276] = { - [sym_else_if] = STATE(277), - [sym_else] = STATE(337), - [aux_sym_if_else_repeat1] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_RBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [277] = { - [sym_else_if] = STATE(285), - [sym_else] = STATE(332), - [aux_sym_if_else_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [278] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_elseif] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [279] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1137), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_elseif] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [280] = { - [sym_else_if] = STATE(281), - [sym_else] = STATE(403), - [aux_sym_if_else_repeat1] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [281] = { - [sym_else_if] = STATE(307), - [sym_else] = STATE(405), - [aux_sym_if_else_repeat1] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [282] = { - [sym_else_if] = STATE(283), - [sym_else] = STATE(337), - [aux_sym_if_else_repeat1] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [283] = { - [sym_else_if] = STATE(307), - [sym_else] = STATE(332), - [aux_sym_if_else_repeat1] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [284] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [285] = { - [sym_else_if] = STATE(285), - [aux_sym_if_else_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [sym_integer] = ACTIONS(1152), - [sym_float] = ACTIONS(1150), - [sym_string] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_map] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_elseif] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_transform] = ACTIONS(1152), - [anon_sym_filter] = ACTIONS(1152), - [anon_sym_find] = ACTIONS(1152), - [anon_sym_remove] = ACTIONS(1152), - [anon_sym_reduce] = ACTIONS(1152), - [anon_sym_select] = ACTIONS(1152), - [anon_sym_insert] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_table] = ACTIONS(1152), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_assert_equal] = ACTIONS(1152), - [anon_sym_download] = ACTIONS(1152), - [anon_sym_help] = ACTIONS(1152), - [anon_sym_length] = ACTIONS(1152), - [anon_sym_output] = ACTIONS(1152), - [anon_sym_output_error] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_append] = ACTIONS(1152), - [anon_sym_metadata] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [anon_sym_read] = ACTIONS(1152), - [anon_sym_workdir] = ACTIONS(1152), - [anon_sym_write] = ACTIONS(1152), - [anon_sym_from_json] = ACTIONS(1152), - [anon_sym_to_json] = ACTIONS(1152), - [anon_sym_to_string] = ACTIONS(1152), - [anon_sym_to_float] = ACTIONS(1152), - [anon_sym_bash] = ACTIONS(1152), - [anon_sym_fish] = ACTIONS(1152), - [anon_sym_raw] = ACTIONS(1152), - [anon_sym_sh] = ACTIONS(1152), - [anon_sym_zsh] = ACTIONS(1152), - [anon_sym_random] = ACTIONS(1152), - [anon_sym_random_boolean] = ACTIONS(1152), - [anon_sym_random_float] = ACTIONS(1152), - [anon_sym_random_integer] = ACTIONS(1152), - [anon_sym_columns] = ACTIONS(1152), - [anon_sym_rows] = ACTIONS(1152), - [anon_sym_reverse] = ACTIONS(1152), - }, - [286] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_elseif] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [287] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_elseif] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [288] = { - [sym_math_operator] = STATE(593), - [sym_logic_operator] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1172), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_elseif] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [289] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_elseif] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [290] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_COMMA] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_RBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_elseif] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [sym_integer] = ACTIONS(1176), - [sym_float] = ACTIONS(1174), - [sym_string] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_map] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_await] = ACTIONS(1176), - [anon_sym_COLON] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1174), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_elseif] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_EQ_GT] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_transform] = ACTIONS(1176), - [anon_sym_filter] = ACTIONS(1176), - [anon_sym_find] = ACTIONS(1176), - [anon_sym_remove] = ACTIONS(1176), - [anon_sym_reduce] = ACTIONS(1176), - [anon_sym_select] = ACTIONS(1176), - [anon_sym_insert] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_table] = ACTIONS(1176), - [anon_sym_assert] = ACTIONS(1176), - [anon_sym_assert_equal] = ACTIONS(1176), - [anon_sym_download] = ACTIONS(1176), - [anon_sym_help] = ACTIONS(1176), - [anon_sym_length] = ACTIONS(1176), - [anon_sym_output] = ACTIONS(1176), - [anon_sym_output_error] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_append] = ACTIONS(1176), - [anon_sym_metadata] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [anon_sym_read] = ACTIONS(1176), - [anon_sym_workdir] = ACTIONS(1176), - [anon_sym_write] = ACTIONS(1176), - [anon_sym_from_json] = ACTIONS(1176), - [anon_sym_to_json] = ACTIONS(1176), - [anon_sym_to_string] = ACTIONS(1176), - [anon_sym_to_float] = ACTIONS(1176), - [anon_sym_bash] = ACTIONS(1176), - [anon_sym_fish] = ACTIONS(1176), - [anon_sym_raw] = ACTIONS(1176), - [anon_sym_sh] = ACTIONS(1176), - [anon_sym_zsh] = ACTIONS(1176), - [anon_sym_random] = ACTIONS(1176), - [anon_sym_random_boolean] = ACTIONS(1176), - [anon_sym_random_float] = ACTIONS(1176), - [anon_sym_random_integer] = ACTIONS(1176), - [anon_sym_columns] = ACTIONS(1176), - [anon_sym_rows] = ACTIONS(1176), - [anon_sym_reverse] = ACTIONS(1176), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [sym_integer] = ACTIONS(1180), - [sym_float] = ACTIONS(1178), - [sym_string] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_map] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_COLON] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1178), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_elseif] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_EQ_GT] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_transform] = ACTIONS(1180), - [anon_sym_filter] = ACTIONS(1180), - [anon_sym_find] = ACTIONS(1180), - [anon_sym_remove] = ACTIONS(1180), - [anon_sym_reduce] = ACTIONS(1180), - [anon_sym_select] = ACTIONS(1180), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_table] = ACTIONS(1180), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_assert_equal] = ACTIONS(1180), - [anon_sym_download] = ACTIONS(1180), - [anon_sym_help] = ACTIONS(1180), - [anon_sym_length] = ACTIONS(1180), - [anon_sym_output] = ACTIONS(1180), - [anon_sym_output_error] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_append] = ACTIONS(1180), - [anon_sym_metadata] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [anon_sym_read] = ACTIONS(1180), - [anon_sym_workdir] = ACTIONS(1180), - [anon_sym_write] = ACTIONS(1180), - [anon_sym_from_json] = ACTIONS(1180), - [anon_sym_to_json] = ACTIONS(1180), - [anon_sym_to_string] = ACTIONS(1180), - [anon_sym_to_float] = ACTIONS(1180), - [anon_sym_bash] = ACTIONS(1180), - [anon_sym_fish] = ACTIONS(1180), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_sh] = ACTIONS(1180), - [anon_sym_zsh] = ACTIONS(1180), - [anon_sym_random] = ACTIONS(1180), - [anon_sym_random_boolean] = ACTIONS(1180), - [anon_sym_random_float] = ACTIONS(1180), - [anon_sym_random_integer] = ACTIONS(1180), - [anon_sym_columns] = ACTIONS(1180), - [anon_sym_rows] = ACTIONS(1180), - [anon_sym_reverse] = ACTIONS(1180), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_RPAREN] = ACTIONS(1182), - [anon_sym_COMMA] = ACTIONS(1182), - [sym_integer] = ACTIONS(1184), - [sym_float] = ACTIONS(1182), - [sym_string] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_RBRACK] = ACTIONS(1182), - [anon_sym_map] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_COLON] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_BANG_EQ] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_elseif] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_EQ_GT] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_transform] = ACTIONS(1184), - [anon_sym_filter] = ACTIONS(1184), - [anon_sym_find] = ACTIONS(1184), - [anon_sym_remove] = ACTIONS(1184), - [anon_sym_reduce] = ACTIONS(1184), - [anon_sym_select] = ACTIONS(1184), - [anon_sym_insert] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_table] = ACTIONS(1184), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_assert_equal] = ACTIONS(1184), - [anon_sym_download] = ACTIONS(1184), - [anon_sym_help] = ACTIONS(1184), - [anon_sym_length] = ACTIONS(1184), - [anon_sym_output] = ACTIONS(1184), - [anon_sym_output_error] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_append] = ACTIONS(1184), - [anon_sym_metadata] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [anon_sym_read] = ACTIONS(1184), - [anon_sym_workdir] = ACTIONS(1184), - [anon_sym_write] = ACTIONS(1184), - [anon_sym_from_json] = ACTIONS(1184), - [anon_sym_to_json] = ACTIONS(1184), - [anon_sym_to_string] = ACTIONS(1184), - [anon_sym_to_float] = ACTIONS(1184), - [anon_sym_bash] = ACTIONS(1184), - [anon_sym_fish] = ACTIONS(1184), - [anon_sym_raw] = ACTIONS(1184), - [anon_sym_sh] = ACTIONS(1184), - [anon_sym_zsh] = ACTIONS(1184), - [anon_sym_random] = ACTIONS(1184), - [anon_sym_random_boolean] = ACTIONS(1184), - [anon_sym_random_float] = ACTIONS(1184), - [anon_sym_random_integer] = ACTIONS(1184), - [anon_sym_columns] = ACTIONS(1184), - [anon_sym_rows] = ACTIONS(1184), - [anon_sym_reverse] = ACTIONS(1184), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [sym_integer] = ACTIONS(1188), - [sym_float] = ACTIONS(1186), - [sym_string] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_map] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_elseif] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_EQ_GT] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_transform] = ACTIONS(1188), - [anon_sym_filter] = ACTIONS(1188), - [anon_sym_find] = ACTIONS(1188), - [anon_sym_remove] = ACTIONS(1188), - [anon_sym_reduce] = ACTIONS(1188), - [anon_sym_select] = ACTIONS(1188), - [anon_sym_insert] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_table] = ACTIONS(1188), - [anon_sym_assert] = ACTIONS(1188), - [anon_sym_assert_equal] = ACTIONS(1188), - [anon_sym_download] = ACTIONS(1188), - [anon_sym_help] = ACTIONS(1188), - [anon_sym_length] = ACTIONS(1188), - [anon_sym_output] = ACTIONS(1188), - [anon_sym_output_error] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_append] = ACTIONS(1188), - [anon_sym_metadata] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [anon_sym_read] = ACTIONS(1188), - [anon_sym_workdir] = ACTIONS(1188), - [anon_sym_write] = ACTIONS(1188), - [anon_sym_from_json] = ACTIONS(1188), - [anon_sym_to_json] = ACTIONS(1188), - [anon_sym_to_string] = ACTIONS(1188), - [anon_sym_to_float] = ACTIONS(1188), - [anon_sym_bash] = ACTIONS(1188), - [anon_sym_fish] = ACTIONS(1188), - [anon_sym_raw] = ACTIONS(1188), - [anon_sym_sh] = ACTIONS(1188), - [anon_sym_zsh] = ACTIONS(1188), - [anon_sym_random] = ACTIONS(1188), - [anon_sym_random_boolean] = ACTIONS(1188), - [anon_sym_random_float] = ACTIONS(1188), - [anon_sym_random_integer] = ACTIONS(1188), - [anon_sym_columns] = ACTIONS(1188), - [anon_sym_rows] = ACTIONS(1188), - [anon_sym_reverse] = ACTIONS(1188), - }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_COMMA] = ACTIONS(1190), - [sym_integer] = ACTIONS(1192), - [sym_float] = ACTIONS(1190), - [sym_string] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_RBRACK] = ACTIONS(1190), - [anon_sym_map] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_await] = ACTIONS(1192), - [anon_sym_COLON] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_elseif] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_EQ_GT] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_transform] = ACTIONS(1192), - [anon_sym_filter] = ACTIONS(1192), - [anon_sym_find] = ACTIONS(1192), - [anon_sym_remove] = ACTIONS(1192), - [anon_sym_reduce] = ACTIONS(1192), - [anon_sym_select] = ACTIONS(1192), - [anon_sym_insert] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_table] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1192), - [anon_sym_assert_equal] = ACTIONS(1192), - [anon_sym_download] = ACTIONS(1192), - [anon_sym_help] = ACTIONS(1192), - [anon_sym_length] = ACTIONS(1192), - [anon_sym_output] = ACTIONS(1192), - [anon_sym_output_error] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_append] = ACTIONS(1192), - [anon_sym_metadata] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [anon_sym_read] = ACTIONS(1192), - [anon_sym_workdir] = ACTIONS(1192), - [anon_sym_write] = ACTIONS(1192), - [anon_sym_from_json] = ACTIONS(1192), - [anon_sym_to_json] = ACTIONS(1192), - [anon_sym_to_string] = ACTIONS(1192), - [anon_sym_to_float] = ACTIONS(1192), - [anon_sym_bash] = ACTIONS(1192), - [anon_sym_fish] = ACTIONS(1192), - [anon_sym_raw] = ACTIONS(1192), - [anon_sym_sh] = ACTIONS(1192), - [anon_sym_zsh] = ACTIONS(1192), - [anon_sym_random] = ACTIONS(1192), - [anon_sym_random_boolean] = ACTIONS(1192), - [anon_sym_random_float] = ACTIONS(1192), - [anon_sym_random_integer] = ACTIONS(1192), - [anon_sym_columns] = ACTIONS(1192), - [anon_sym_rows] = ACTIONS(1192), - [anon_sym_reverse] = ACTIONS(1192), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [sym_integer] = ACTIONS(1196), - [sym_float] = ACTIONS(1194), - [sym_string] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_map] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_await] = ACTIONS(1196), - [anon_sym_COLON] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_elseif] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_EQ_GT] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_transform] = ACTIONS(1196), - [anon_sym_filter] = ACTIONS(1196), - [anon_sym_find] = ACTIONS(1196), - [anon_sym_remove] = ACTIONS(1196), - [anon_sym_reduce] = ACTIONS(1196), - [anon_sym_select] = ACTIONS(1196), - [anon_sym_insert] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_table] = ACTIONS(1196), - [anon_sym_assert] = ACTIONS(1196), - [anon_sym_assert_equal] = ACTIONS(1196), - [anon_sym_download] = ACTIONS(1196), - [anon_sym_help] = ACTIONS(1196), - [anon_sym_length] = ACTIONS(1196), - [anon_sym_output] = ACTIONS(1196), - [anon_sym_output_error] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_append] = ACTIONS(1196), - [anon_sym_metadata] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [anon_sym_read] = ACTIONS(1196), - [anon_sym_workdir] = ACTIONS(1196), - [anon_sym_write] = ACTIONS(1196), - [anon_sym_from_json] = ACTIONS(1196), - [anon_sym_to_json] = ACTIONS(1196), - [anon_sym_to_string] = ACTIONS(1196), - [anon_sym_to_float] = ACTIONS(1196), - [anon_sym_bash] = ACTIONS(1196), - [anon_sym_fish] = ACTIONS(1196), - [anon_sym_raw] = ACTIONS(1196), - [anon_sym_sh] = ACTIONS(1196), - [anon_sym_zsh] = ACTIONS(1196), - [anon_sym_random] = ACTIONS(1196), - [anon_sym_random_boolean] = ACTIONS(1196), - [anon_sym_random_float] = ACTIONS(1196), - [anon_sym_random_integer] = ACTIONS(1196), - [anon_sym_columns] = ACTIONS(1196), - [anon_sym_rows] = ACTIONS(1196), - [anon_sym_reverse] = ACTIONS(1196), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_COMMA] = ACTIONS(1198), - [sym_integer] = ACTIONS(1200), - [sym_float] = ACTIONS(1198), - [sym_string] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_map] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_await] = ACTIONS(1200), - [anon_sym_COLON] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_elseif] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_transform] = ACTIONS(1200), - [anon_sym_filter] = ACTIONS(1200), - [anon_sym_find] = ACTIONS(1200), - [anon_sym_remove] = ACTIONS(1200), - [anon_sym_reduce] = ACTIONS(1200), - [anon_sym_select] = ACTIONS(1200), - [anon_sym_insert] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_table] = ACTIONS(1200), - [anon_sym_assert] = ACTIONS(1200), - [anon_sym_assert_equal] = ACTIONS(1200), - [anon_sym_download] = ACTIONS(1200), - [anon_sym_help] = ACTIONS(1200), - [anon_sym_length] = ACTIONS(1200), - [anon_sym_output] = ACTIONS(1200), - [anon_sym_output_error] = ACTIONS(1200), - [anon_sym_type] = ACTIONS(1200), - [anon_sym_append] = ACTIONS(1200), - [anon_sym_metadata] = ACTIONS(1200), - [anon_sym_move] = ACTIONS(1200), - [anon_sym_read] = ACTIONS(1200), - [anon_sym_workdir] = ACTIONS(1200), - [anon_sym_write] = ACTIONS(1200), - [anon_sym_from_json] = ACTIONS(1200), - [anon_sym_to_json] = ACTIONS(1200), - [anon_sym_to_string] = ACTIONS(1200), - [anon_sym_to_float] = ACTIONS(1200), - [anon_sym_bash] = ACTIONS(1200), - [anon_sym_fish] = ACTIONS(1200), - [anon_sym_raw] = ACTIONS(1200), - [anon_sym_sh] = ACTIONS(1200), - [anon_sym_zsh] = ACTIONS(1200), - [anon_sym_random] = ACTIONS(1200), - [anon_sym_random_boolean] = ACTIONS(1200), - [anon_sym_random_float] = ACTIONS(1200), - [anon_sym_random_integer] = ACTIONS(1200), - [anon_sym_columns] = ACTIONS(1200), - [anon_sym_rows] = ACTIONS(1200), - [anon_sym_reverse] = ACTIONS(1200), - }, - [298] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [299] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_elseif] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [300] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_COMMA] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_RBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1202), - [anon_sym_COMMA] = ACTIONS(1202), - [sym_integer] = ACTIONS(1204), - [sym_float] = ACTIONS(1202), - [sym_string] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_map] = ACTIONS(1204), - [anon_sym_async] = ACTIONS(1204), - [anon_sym_await] = ACTIONS(1204), - [anon_sym_COLON] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(1202), - [anon_sym_PERCENT] = ACTIONS(1202), - [anon_sym_EQ_EQ] = ACTIONS(1202), - [anon_sym_BANG_EQ] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_elseif] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_EQ_GT] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_transform] = ACTIONS(1204), - [anon_sym_filter] = ACTIONS(1204), - [anon_sym_find] = ACTIONS(1204), - [anon_sym_remove] = ACTIONS(1204), - [anon_sym_reduce] = ACTIONS(1204), - [anon_sym_select] = ACTIONS(1204), - [anon_sym_insert] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_table] = ACTIONS(1204), - [anon_sym_assert] = ACTIONS(1204), - [anon_sym_assert_equal] = ACTIONS(1204), - [anon_sym_download] = ACTIONS(1204), - [anon_sym_help] = ACTIONS(1204), - [anon_sym_length] = ACTIONS(1204), - [anon_sym_output] = ACTIONS(1204), - [anon_sym_output_error] = ACTIONS(1204), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_append] = ACTIONS(1204), - [anon_sym_metadata] = ACTIONS(1204), - [anon_sym_move] = ACTIONS(1204), - [anon_sym_read] = ACTIONS(1204), - [anon_sym_workdir] = ACTIONS(1204), - [anon_sym_write] = ACTIONS(1204), - [anon_sym_from_json] = ACTIONS(1204), - [anon_sym_to_json] = ACTIONS(1204), - [anon_sym_to_string] = ACTIONS(1204), - [anon_sym_to_float] = ACTIONS(1204), - [anon_sym_bash] = ACTIONS(1204), - [anon_sym_fish] = ACTIONS(1204), - [anon_sym_raw] = ACTIONS(1204), - [anon_sym_sh] = ACTIONS(1204), - [anon_sym_zsh] = ACTIONS(1204), - [anon_sym_random] = ACTIONS(1204), - [anon_sym_random_boolean] = ACTIONS(1204), - [anon_sym_random_float] = ACTIONS(1204), - [anon_sym_random_integer] = ACTIONS(1204), - [anon_sym_columns] = ACTIONS(1204), - [anon_sym_rows] = ACTIONS(1204), - [anon_sym_reverse] = ACTIONS(1204), - }, - [302] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_RPAREN] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [sym_integer] = ACTIONS(1208), - [sym_float] = ACTIONS(1206), - [sym_string] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACK] = ACTIONS(1206), - [anon_sym_map] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_await] = ACTIONS(1208), - [anon_sym_COLON] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_SLASH] = ACTIONS(1206), - [anon_sym_PERCENT] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_elseif] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_EQ_GT] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_transform] = ACTIONS(1208), - [anon_sym_filter] = ACTIONS(1208), - [anon_sym_find] = ACTIONS(1208), - [anon_sym_remove] = ACTIONS(1208), - [anon_sym_reduce] = ACTIONS(1208), - [anon_sym_select] = ACTIONS(1208), - [anon_sym_insert] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_table] = ACTIONS(1208), - [anon_sym_assert] = ACTIONS(1208), - [anon_sym_assert_equal] = ACTIONS(1208), - [anon_sym_download] = ACTIONS(1208), - [anon_sym_help] = ACTIONS(1208), - [anon_sym_length] = ACTIONS(1208), - [anon_sym_output] = ACTIONS(1208), - [anon_sym_output_error] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_append] = ACTIONS(1208), - [anon_sym_metadata] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_read] = ACTIONS(1208), - [anon_sym_workdir] = ACTIONS(1208), - [anon_sym_write] = ACTIONS(1208), - [anon_sym_from_json] = ACTIONS(1208), - [anon_sym_to_json] = ACTIONS(1208), - [anon_sym_to_string] = ACTIONS(1208), - [anon_sym_to_float] = ACTIONS(1208), - [anon_sym_bash] = ACTIONS(1208), - [anon_sym_fish] = ACTIONS(1208), - [anon_sym_raw] = ACTIONS(1208), - [anon_sym_sh] = ACTIONS(1208), - [anon_sym_zsh] = ACTIONS(1208), - [anon_sym_random] = ACTIONS(1208), - [anon_sym_random_boolean] = ACTIONS(1208), - [anon_sym_random_float] = ACTIONS(1208), - [anon_sym_random_integer] = ACTIONS(1208), - [anon_sym_columns] = ACTIONS(1208), - [anon_sym_rows] = ACTIONS(1208), - [anon_sym_reverse] = ACTIONS(1208), - }, - [304] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_elseif] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [305] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [306] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [307] = { - [sym_else_if] = STATE(307), - [aux_sym_if_else_repeat1] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [sym_integer] = ACTIONS(1152), - [sym_float] = ACTIONS(1150), - [sym_string] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_map] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_elseif] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_transform] = ACTIONS(1152), - [anon_sym_filter] = ACTIONS(1152), - [anon_sym_find] = ACTIONS(1152), - [anon_sym_remove] = ACTIONS(1152), - [anon_sym_reduce] = ACTIONS(1152), - [anon_sym_select] = ACTIONS(1152), - [anon_sym_insert] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_table] = ACTIONS(1152), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_assert_equal] = ACTIONS(1152), - [anon_sym_download] = ACTIONS(1152), - [anon_sym_help] = ACTIONS(1152), - [anon_sym_length] = ACTIONS(1152), - [anon_sym_output] = ACTIONS(1152), - [anon_sym_output_error] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_append] = ACTIONS(1152), - [anon_sym_metadata] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [anon_sym_read] = ACTIONS(1152), - [anon_sym_workdir] = ACTIONS(1152), - [anon_sym_write] = ACTIONS(1152), - [anon_sym_from_json] = ACTIONS(1152), - [anon_sym_to_json] = ACTIONS(1152), - [anon_sym_to_string] = ACTIONS(1152), - [anon_sym_to_float] = ACTIONS(1152), - [anon_sym_bash] = ACTIONS(1152), - [anon_sym_fish] = ACTIONS(1152), - [anon_sym_raw] = ACTIONS(1152), - [anon_sym_sh] = ACTIONS(1152), - [anon_sym_zsh] = ACTIONS(1152), - [anon_sym_random] = ACTIONS(1152), - [anon_sym_random_boolean] = ACTIONS(1152), - [anon_sym_random_float] = ACTIONS(1152), - [anon_sym_random_integer] = ACTIONS(1152), - [anon_sym_columns] = ACTIONS(1152), - [anon_sym_rows] = ACTIONS(1152), - [anon_sym_reverse] = ACTIONS(1152), - }, - [308] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_elseif] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [309] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_COMMA] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_RBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [310] = { - [sym_else_if] = STATE(318), - [sym_else] = STATE(403), - [aux_sym_if_else_repeat1] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_identifier] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_COMMA] = ACTIONS(1219), - [sym_integer] = ACTIONS(1221), - [sym_float] = ACTIONS(1219), - [sym_string] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_RBRACK] = ACTIONS(1219), - [anon_sym_map] = ACTIONS(1221), - [anon_sym_async] = ACTIONS(1221), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1219), - [anon_sym_PIPE_PIPE] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_elseif] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1221), - [anon_sym_EQ_GT] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_transform] = ACTIONS(1221), - [anon_sym_filter] = ACTIONS(1221), - [anon_sym_find] = ACTIONS(1221), - [anon_sym_remove] = ACTIONS(1221), - [anon_sym_reduce] = ACTIONS(1221), - [anon_sym_select] = ACTIONS(1221), - [anon_sym_insert] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_table] = ACTIONS(1221), - [anon_sym_assert] = ACTIONS(1221), - [anon_sym_assert_equal] = ACTIONS(1221), - [anon_sym_download] = ACTIONS(1221), - [anon_sym_help] = ACTIONS(1221), - [anon_sym_length] = ACTIONS(1221), - [anon_sym_output] = ACTIONS(1221), - [anon_sym_output_error] = ACTIONS(1221), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_append] = ACTIONS(1221), - [anon_sym_metadata] = ACTIONS(1221), - [anon_sym_move] = ACTIONS(1221), - [anon_sym_read] = ACTIONS(1221), - [anon_sym_workdir] = ACTIONS(1221), - [anon_sym_write] = ACTIONS(1221), - [anon_sym_from_json] = ACTIONS(1221), - [anon_sym_to_json] = ACTIONS(1221), - [anon_sym_to_string] = ACTIONS(1221), - [anon_sym_to_float] = ACTIONS(1221), - [anon_sym_bash] = ACTIONS(1221), - [anon_sym_fish] = ACTIONS(1221), - [anon_sym_raw] = ACTIONS(1221), - [anon_sym_sh] = ACTIONS(1221), - [anon_sym_zsh] = ACTIONS(1221), - [anon_sym_random] = ACTIONS(1221), - [anon_sym_random_boolean] = ACTIONS(1221), - [anon_sym_random_float] = ACTIONS(1221), - [anon_sym_random_integer] = ACTIONS(1221), - [anon_sym_columns] = ACTIONS(1221), - [anon_sym_rows] = ACTIONS(1221), - [anon_sym_reverse] = ACTIONS(1221), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1115), - [anon_sym_PERCENT] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1115), - [anon_sym_PIPE_PIPE] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [313] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_elseif] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [314] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_elseif] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(862), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(862), - [sym_float] = ACTIONS(836), - [sym_string] = ACTIONS(836), - [anon_sym_true] = ACTIONS(862), - [anon_sym_false] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(862), - [anon_sym_async] = ACTIONS(862), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_elseif] = ACTIONS(836), - [anon_sym_else] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(836), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_table] = ACTIONS(862), - [anon_sym_assert] = ACTIONS(862), - [anon_sym_assert_equal] = ACTIONS(862), - [anon_sym_download] = ACTIONS(862), - [anon_sym_help] = ACTIONS(862), - [anon_sym_length] = ACTIONS(862), - [anon_sym_output] = ACTIONS(862), - [anon_sym_output_error] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_append] = ACTIONS(862), - [anon_sym_metadata] = ACTIONS(862), - [anon_sym_move] = ACTIONS(862), - [anon_sym_read] = ACTIONS(862), - [anon_sym_workdir] = ACTIONS(862), - [anon_sym_write] = ACTIONS(862), - [anon_sym_from_json] = ACTIONS(862), - [anon_sym_to_json] = ACTIONS(862), - [anon_sym_to_string] = ACTIONS(862), - [anon_sym_to_float] = ACTIONS(862), - [anon_sym_bash] = ACTIONS(862), - [anon_sym_fish] = ACTIONS(862), - [anon_sym_raw] = ACTIONS(862), - [anon_sym_sh] = ACTIONS(862), - [anon_sym_zsh] = ACTIONS(862), - [anon_sym_random] = ACTIONS(862), - [anon_sym_random_boolean] = ACTIONS(862), - [anon_sym_random_float] = ACTIONS(862), - [anon_sym_random_integer] = ACTIONS(862), - [anon_sym_columns] = ACTIONS(862), - [anon_sym_rows] = ACTIONS(862), - [anon_sym_reverse] = ACTIONS(862), - }, - [316] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_elseif] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(1225), - [sym_integer] = ACTIONS(1227), - [sym_float] = ACTIONS(1225), - [sym_string] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_RBRACK] = ACTIONS(1225), - [anon_sym_map] = ACTIONS(1227), - [anon_sym_async] = ACTIONS(1227), - [anon_sym_await] = ACTIONS(1227), - [anon_sym_COLON] = ACTIONS(1225), - [anon_sym_DOT_DOT] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1225), - [anon_sym_PERCENT] = ACTIONS(1225), - [anon_sym_EQ_EQ] = ACTIONS(1225), - [anon_sym_BANG_EQ] = ACTIONS(1225), - [anon_sym_AMP_AMP] = ACTIONS(1225), - [anon_sym_PIPE_PIPE] = ACTIONS(1225), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1225), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_elseif] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_EQ_GT] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_transform] = ACTIONS(1227), - [anon_sym_filter] = ACTIONS(1227), - [anon_sym_find] = ACTIONS(1227), - [anon_sym_remove] = ACTIONS(1227), - [anon_sym_reduce] = ACTIONS(1227), - [anon_sym_select] = ACTIONS(1227), - [anon_sym_insert] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_table] = ACTIONS(1227), - [anon_sym_assert] = ACTIONS(1227), - [anon_sym_assert_equal] = ACTIONS(1227), - [anon_sym_download] = ACTIONS(1227), - [anon_sym_help] = ACTIONS(1227), - [anon_sym_length] = ACTIONS(1227), - [anon_sym_output] = ACTIONS(1227), - [anon_sym_output_error] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_append] = ACTIONS(1227), - [anon_sym_metadata] = ACTIONS(1227), - [anon_sym_move] = ACTIONS(1227), - [anon_sym_read] = ACTIONS(1227), - [anon_sym_workdir] = ACTIONS(1227), - [anon_sym_write] = ACTIONS(1227), - [anon_sym_from_json] = ACTIONS(1227), - [anon_sym_to_json] = ACTIONS(1227), - [anon_sym_to_string] = ACTIONS(1227), - [anon_sym_to_float] = ACTIONS(1227), - [anon_sym_bash] = ACTIONS(1227), - [anon_sym_fish] = ACTIONS(1227), - [anon_sym_raw] = ACTIONS(1227), - [anon_sym_sh] = ACTIONS(1227), - [anon_sym_zsh] = ACTIONS(1227), - [anon_sym_random] = ACTIONS(1227), - [anon_sym_random_boolean] = ACTIONS(1227), - [anon_sym_random_float] = ACTIONS(1227), - [anon_sym_random_integer] = ACTIONS(1227), - [anon_sym_columns] = ACTIONS(1227), - [anon_sym_rows] = ACTIONS(1227), - [anon_sym_reverse] = ACTIONS(1227), - }, - [318] = { - [sym_else_if] = STATE(349), - [sym_else] = STATE(405), - [aux_sym_if_else_repeat1] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [sym_integer] = ACTIONS(1231), - [sym_float] = ACTIONS(1229), - [sym_string] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_map] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_elseif] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_EQ_GT] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_transform] = ACTIONS(1231), - [anon_sym_filter] = ACTIONS(1231), - [anon_sym_find] = ACTIONS(1231), - [anon_sym_remove] = ACTIONS(1231), - [anon_sym_reduce] = ACTIONS(1231), - [anon_sym_select] = ACTIONS(1231), - [anon_sym_insert] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1231), - [anon_sym_assert_equal] = ACTIONS(1231), - [anon_sym_download] = ACTIONS(1231), - [anon_sym_help] = ACTIONS(1231), - [anon_sym_length] = ACTIONS(1231), - [anon_sym_output] = ACTIONS(1231), - [anon_sym_output_error] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_append] = ACTIONS(1231), - [anon_sym_metadata] = ACTIONS(1231), - [anon_sym_move] = ACTIONS(1231), - [anon_sym_read] = ACTIONS(1231), - [anon_sym_workdir] = ACTIONS(1231), - [anon_sym_write] = ACTIONS(1231), - [anon_sym_from_json] = ACTIONS(1231), - [anon_sym_to_json] = ACTIONS(1231), - [anon_sym_to_string] = ACTIONS(1231), - [anon_sym_to_float] = ACTIONS(1231), - [anon_sym_bash] = ACTIONS(1231), - [anon_sym_fish] = ACTIONS(1231), - [anon_sym_raw] = ACTIONS(1231), - [anon_sym_sh] = ACTIONS(1231), - [anon_sym_zsh] = ACTIONS(1231), - [anon_sym_random] = ACTIONS(1231), - [anon_sym_random_boolean] = ACTIONS(1231), - [anon_sym_random_float] = ACTIONS(1231), - [anon_sym_random_integer] = ACTIONS(1231), - [anon_sym_columns] = ACTIONS(1231), - [anon_sym_rows] = ACTIONS(1231), - [anon_sym_reverse] = ACTIONS(1231), - }, - [320] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1233), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_RPAREN] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [sym_integer] = ACTIONS(1238), - [sym_float] = ACTIONS(1236), - [sym_string] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1236), - [anon_sym_map] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_elseif] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_EQ_GT] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_transform] = ACTIONS(1238), - [anon_sym_filter] = ACTIONS(1238), - [anon_sym_find] = ACTIONS(1238), - [anon_sym_remove] = ACTIONS(1238), - [anon_sym_reduce] = ACTIONS(1238), - [anon_sym_select] = ACTIONS(1238), - [anon_sym_insert] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_table] = ACTIONS(1238), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_assert_equal] = ACTIONS(1238), - [anon_sym_download] = ACTIONS(1238), - [anon_sym_help] = ACTIONS(1238), - [anon_sym_length] = ACTIONS(1238), - [anon_sym_output] = ACTIONS(1238), - [anon_sym_output_error] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_append] = ACTIONS(1238), - [anon_sym_metadata] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_read] = ACTIONS(1238), - [anon_sym_workdir] = ACTIONS(1238), - [anon_sym_write] = ACTIONS(1238), - [anon_sym_from_json] = ACTIONS(1238), - [anon_sym_to_json] = ACTIONS(1238), - [anon_sym_to_string] = ACTIONS(1238), - [anon_sym_to_float] = ACTIONS(1238), - [anon_sym_bash] = ACTIONS(1238), - [anon_sym_fish] = ACTIONS(1238), - [anon_sym_raw] = ACTIONS(1238), - [anon_sym_sh] = ACTIONS(1238), - [anon_sym_zsh] = ACTIONS(1238), - [anon_sym_random] = ACTIONS(1238), - [anon_sym_random_boolean] = ACTIONS(1238), - [anon_sym_random_float] = ACTIONS(1238), - [anon_sym_random_integer] = ACTIONS(1238), - [anon_sym_columns] = ACTIONS(1238), - [anon_sym_rows] = ACTIONS(1238), - [anon_sym_reverse] = ACTIONS(1238), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [sym_integer] = ACTIONS(1242), - [sym_float] = ACTIONS(1240), - [sym_string] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1240), - [anon_sym_map] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_COLON] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_elseif] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_transform] = ACTIONS(1242), - [anon_sym_filter] = ACTIONS(1242), - [anon_sym_find] = ACTIONS(1242), - [anon_sym_remove] = ACTIONS(1242), - [anon_sym_reduce] = ACTIONS(1242), - [anon_sym_select] = ACTIONS(1242), - [anon_sym_insert] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_table] = ACTIONS(1242), - [anon_sym_assert] = ACTIONS(1242), - [anon_sym_assert_equal] = ACTIONS(1242), - [anon_sym_download] = ACTIONS(1242), - [anon_sym_help] = ACTIONS(1242), - [anon_sym_length] = ACTIONS(1242), - [anon_sym_output] = ACTIONS(1242), - [anon_sym_output_error] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_append] = ACTIONS(1242), - [anon_sym_metadata] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_read] = ACTIONS(1242), - [anon_sym_workdir] = ACTIONS(1242), - [anon_sym_write] = ACTIONS(1242), - [anon_sym_from_json] = ACTIONS(1242), - [anon_sym_to_json] = ACTIONS(1242), - [anon_sym_to_string] = ACTIONS(1242), - [anon_sym_to_float] = ACTIONS(1242), - [anon_sym_bash] = ACTIONS(1242), - [anon_sym_fish] = ACTIONS(1242), - [anon_sym_raw] = ACTIONS(1242), - [anon_sym_sh] = ACTIONS(1242), - [anon_sym_zsh] = ACTIONS(1242), - [anon_sym_random] = ACTIONS(1242), - [anon_sym_random_boolean] = ACTIONS(1242), - [anon_sym_random_float] = ACTIONS(1242), - [anon_sym_random_integer] = ACTIONS(1242), - [anon_sym_columns] = ACTIONS(1242), - [anon_sym_rows] = ACTIONS(1242), - [anon_sym_reverse] = ACTIONS(1242), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [sym_integer] = ACTIONS(1246), - [sym_float] = ACTIONS(1244), - [sym_string] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_map] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_await] = ACTIONS(1246), - [anon_sym_COLON] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_elseif] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_EQ_GT] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_transform] = ACTIONS(1246), - [anon_sym_filter] = ACTIONS(1246), - [anon_sym_find] = ACTIONS(1246), - [anon_sym_remove] = ACTIONS(1246), - [anon_sym_reduce] = ACTIONS(1246), - [anon_sym_select] = ACTIONS(1246), - [anon_sym_insert] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_table] = ACTIONS(1246), - [anon_sym_assert] = ACTIONS(1246), - [anon_sym_assert_equal] = ACTIONS(1246), - [anon_sym_download] = ACTIONS(1246), - [anon_sym_help] = ACTIONS(1246), - [anon_sym_length] = ACTIONS(1246), - [anon_sym_output] = ACTIONS(1246), - [anon_sym_output_error] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_append] = ACTIONS(1246), - [anon_sym_metadata] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_read] = ACTIONS(1246), - [anon_sym_workdir] = ACTIONS(1246), - [anon_sym_write] = ACTIONS(1246), - [anon_sym_from_json] = ACTIONS(1246), - [anon_sym_to_json] = ACTIONS(1246), - [anon_sym_to_string] = ACTIONS(1246), - [anon_sym_to_float] = ACTIONS(1246), - [anon_sym_bash] = ACTIONS(1246), - [anon_sym_fish] = ACTIONS(1246), - [anon_sym_raw] = ACTIONS(1246), - [anon_sym_sh] = ACTIONS(1246), - [anon_sym_zsh] = ACTIONS(1246), - [anon_sym_random] = ACTIONS(1246), - [anon_sym_random_boolean] = ACTIONS(1246), - [anon_sym_random_float] = ACTIONS(1246), - [anon_sym_random_integer] = ACTIONS(1246), - [anon_sym_columns] = ACTIONS(1246), - [anon_sym_rows] = ACTIONS(1246), - [anon_sym_reverse] = ACTIONS(1246), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [sym_integer] = ACTIONS(1250), - [sym_float] = ACTIONS(1248), - [sym_string] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_map] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_elseif] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_EQ_GT] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_transform] = ACTIONS(1250), - [anon_sym_filter] = ACTIONS(1250), - [anon_sym_find] = ACTIONS(1250), - [anon_sym_remove] = ACTIONS(1250), - [anon_sym_reduce] = ACTIONS(1250), - [anon_sym_select] = ACTIONS(1250), - [anon_sym_insert] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_table] = ACTIONS(1250), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_assert_equal] = ACTIONS(1250), - [anon_sym_download] = ACTIONS(1250), - [anon_sym_help] = ACTIONS(1250), - [anon_sym_length] = ACTIONS(1250), - [anon_sym_output] = ACTIONS(1250), - [anon_sym_output_error] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_append] = ACTIONS(1250), - [anon_sym_metadata] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [anon_sym_read] = ACTIONS(1250), - [anon_sym_workdir] = ACTIONS(1250), - [anon_sym_write] = ACTIONS(1250), - [anon_sym_from_json] = ACTIONS(1250), - [anon_sym_to_json] = ACTIONS(1250), - [anon_sym_to_string] = ACTIONS(1250), - [anon_sym_to_float] = ACTIONS(1250), - [anon_sym_bash] = ACTIONS(1250), - [anon_sym_fish] = ACTIONS(1250), - [anon_sym_raw] = ACTIONS(1250), - [anon_sym_sh] = ACTIONS(1250), - [anon_sym_zsh] = ACTIONS(1250), - [anon_sym_random] = ACTIONS(1250), - [anon_sym_random_boolean] = ACTIONS(1250), - [anon_sym_random_float] = ACTIONS(1250), - [anon_sym_random_integer] = ACTIONS(1250), - [anon_sym_columns] = ACTIONS(1250), - [anon_sym_rows] = ACTIONS(1250), - [anon_sym_reverse] = ACTIONS(1250), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(1252), - [sym_integer] = ACTIONS(1254), - [sym_float] = ACTIONS(1252), - [sym_string] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1252), - [anon_sym_map] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1254), - [anon_sym_await] = ACTIONS(1254), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_elseif] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1254), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_transform] = ACTIONS(1254), - [anon_sym_filter] = ACTIONS(1254), - [anon_sym_find] = ACTIONS(1254), - [anon_sym_remove] = ACTIONS(1254), - [anon_sym_reduce] = ACTIONS(1254), - [anon_sym_select] = ACTIONS(1254), - [anon_sym_insert] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_table] = ACTIONS(1254), - [anon_sym_assert] = ACTIONS(1254), - [anon_sym_assert_equal] = ACTIONS(1254), - [anon_sym_download] = ACTIONS(1254), - [anon_sym_help] = ACTIONS(1254), - [anon_sym_length] = ACTIONS(1254), - [anon_sym_output] = ACTIONS(1254), - [anon_sym_output_error] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_append] = ACTIONS(1254), - [anon_sym_metadata] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1254), - [anon_sym_read] = ACTIONS(1254), - [anon_sym_workdir] = ACTIONS(1254), - [anon_sym_write] = ACTIONS(1254), - [anon_sym_from_json] = ACTIONS(1254), - [anon_sym_to_json] = ACTIONS(1254), - [anon_sym_to_string] = ACTIONS(1254), - [anon_sym_to_float] = ACTIONS(1254), - [anon_sym_bash] = ACTIONS(1254), - [anon_sym_fish] = ACTIONS(1254), - [anon_sym_raw] = ACTIONS(1254), - [anon_sym_sh] = ACTIONS(1254), - [anon_sym_zsh] = ACTIONS(1254), - [anon_sym_random] = ACTIONS(1254), - [anon_sym_random_boolean] = ACTIONS(1254), - [anon_sym_random_float] = ACTIONS(1254), - [anon_sym_random_integer] = ACTIONS(1254), - [anon_sym_columns] = ACTIONS(1254), - [anon_sym_rows] = ACTIONS(1254), - [anon_sym_reverse] = ACTIONS(1254), - }, - [326] = { - [sym_math_operator] = STATE(535), - [sym_logic_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1172), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_elseif] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1256), - [sym_integer] = ACTIONS(1258), - [sym_float] = ACTIONS(1256), - [sym_string] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_map] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_elseif] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_EQ_GT] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_transform] = ACTIONS(1258), - [anon_sym_filter] = ACTIONS(1258), - [anon_sym_find] = ACTIONS(1258), - [anon_sym_remove] = ACTIONS(1258), - [anon_sym_reduce] = ACTIONS(1258), - [anon_sym_select] = ACTIONS(1258), - [anon_sym_insert] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_table] = ACTIONS(1258), - [anon_sym_assert] = ACTIONS(1258), - [anon_sym_assert_equal] = ACTIONS(1258), - [anon_sym_download] = ACTIONS(1258), - [anon_sym_help] = ACTIONS(1258), - [anon_sym_length] = ACTIONS(1258), - [anon_sym_output] = ACTIONS(1258), - [anon_sym_output_error] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_append] = ACTIONS(1258), - [anon_sym_metadata] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1258), - [anon_sym_read] = ACTIONS(1258), - [anon_sym_workdir] = ACTIONS(1258), - [anon_sym_write] = ACTIONS(1258), - [anon_sym_from_json] = ACTIONS(1258), - [anon_sym_to_json] = ACTIONS(1258), - [anon_sym_to_string] = ACTIONS(1258), - [anon_sym_to_float] = ACTIONS(1258), - [anon_sym_bash] = ACTIONS(1258), - [anon_sym_fish] = ACTIONS(1258), - [anon_sym_raw] = ACTIONS(1258), - [anon_sym_sh] = ACTIONS(1258), - [anon_sym_zsh] = ACTIONS(1258), - [anon_sym_random] = ACTIONS(1258), - [anon_sym_random_boolean] = ACTIONS(1258), - [anon_sym_random_float] = ACTIONS(1258), - [anon_sym_random_integer] = ACTIONS(1258), - [anon_sym_columns] = ACTIONS(1258), - [anon_sym_rows] = ACTIONS(1258), - [anon_sym_reverse] = ACTIONS(1258), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [sym_integer] = ACTIONS(1262), - [sym_float] = ACTIONS(1260), - [sym_string] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_map] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_elseif] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_EQ_GT] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_transform] = ACTIONS(1262), - [anon_sym_filter] = ACTIONS(1262), - [anon_sym_find] = ACTIONS(1262), - [anon_sym_remove] = ACTIONS(1262), - [anon_sym_reduce] = ACTIONS(1262), - [anon_sym_select] = ACTIONS(1262), - [anon_sym_insert] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_table] = ACTIONS(1262), - [anon_sym_assert] = ACTIONS(1262), - [anon_sym_assert_equal] = ACTIONS(1262), - [anon_sym_download] = ACTIONS(1262), - [anon_sym_help] = ACTIONS(1262), - [anon_sym_length] = ACTIONS(1262), - [anon_sym_output] = ACTIONS(1262), - [anon_sym_output_error] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_append] = ACTIONS(1262), - [anon_sym_metadata] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1262), - [anon_sym_read] = ACTIONS(1262), - [anon_sym_workdir] = ACTIONS(1262), - [anon_sym_write] = ACTIONS(1262), - [anon_sym_from_json] = ACTIONS(1262), - [anon_sym_to_json] = ACTIONS(1262), - [anon_sym_to_string] = ACTIONS(1262), - [anon_sym_to_float] = ACTIONS(1262), - [anon_sym_bash] = ACTIONS(1262), - [anon_sym_fish] = ACTIONS(1262), - [anon_sym_raw] = ACTIONS(1262), - [anon_sym_sh] = ACTIONS(1262), - [anon_sym_zsh] = ACTIONS(1262), - [anon_sym_random] = ACTIONS(1262), - [anon_sym_random_boolean] = ACTIONS(1262), - [anon_sym_random_float] = ACTIONS(1262), - [anon_sym_random_integer] = ACTIONS(1262), - [anon_sym_columns] = ACTIONS(1262), - [anon_sym_rows] = ACTIONS(1262), - [anon_sym_reverse] = ACTIONS(1262), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [sym_integer] = ACTIONS(1266), - [sym_float] = ACTIONS(1264), - [sym_string] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_map] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_elseif] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_EQ_GT] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_transform] = ACTIONS(1266), - [anon_sym_filter] = ACTIONS(1266), - [anon_sym_find] = ACTIONS(1266), - [anon_sym_remove] = ACTIONS(1266), - [anon_sym_reduce] = ACTIONS(1266), - [anon_sym_select] = ACTIONS(1266), - [anon_sym_insert] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_table] = ACTIONS(1266), - [anon_sym_assert] = ACTIONS(1266), - [anon_sym_assert_equal] = ACTIONS(1266), - [anon_sym_download] = ACTIONS(1266), - [anon_sym_help] = ACTIONS(1266), - [anon_sym_length] = ACTIONS(1266), - [anon_sym_output] = ACTIONS(1266), - [anon_sym_output_error] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_append] = ACTIONS(1266), - [anon_sym_metadata] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1266), - [anon_sym_read] = ACTIONS(1266), - [anon_sym_workdir] = ACTIONS(1266), - [anon_sym_write] = ACTIONS(1266), - [anon_sym_from_json] = ACTIONS(1266), - [anon_sym_to_json] = ACTIONS(1266), - [anon_sym_to_string] = ACTIONS(1266), - [anon_sym_to_float] = ACTIONS(1266), - [anon_sym_bash] = ACTIONS(1266), - [anon_sym_fish] = ACTIONS(1266), - [anon_sym_raw] = ACTIONS(1266), - [anon_sym_sh] = ACTIONS(1266), - [anon_sym_zsh] = ACTIONS(1266), - [anon_sym_random] = ACTIONS(1266), - [anon_sym_random_boolean] = ACTIONS(1266), - [anon_sym_random_float] = ACTIONS(1266), - [anon_sym_random_integer] = ACTIONS(1266), - [anon_sym_columns] = ACTIONS(1266), - [anon_sym_rows] = ACTIONS(1266), - [anon_sym_reverse] = ACTIONS(1266), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [sym_integer] = ACTIONS(1270), - [sym_float] = ACTIONS(1268), - [sym_string] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_map] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_elseif] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_transform] = ACTIONS(1270), - [anon_sym_filter] = ACTIONS(1270), - [anon_sym_find] = ACTIONS(1270), - [anon_sym_remove] = ACTIONS(1270), - [anon_sym_reduce] = ACTIONS(1270), - [anon_sym_select] = ACTIONS(1270), - [anon_sym_insert] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_table] = ACTIONS(1270), - [anon_sym_assert] = ACTIONS(1270), - [anon_sym_assert_equal] = ACTIONS(1270), - [anon_sym_download] = ACTIONS(1270), - [anon_sym_help] = ACTIONS(1270), - [anon_sym_length] = ACTIONS(1270), - [anon_sym_output] = ACTIONS(1270), - [anon_sym_output_error] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_append] = ACTIONS(1270), - [anon_sym_metadata] = ACTIONS(1270), - [anon_sym_move] = ACTIONS(1270), - [anon_sym_read] = ACTIONS(1270), - [anon_sym_workdir] = ACTIONS(1270), - [anon_sym_write] = ACTIONS(1270), - [anon_sym_from_json] = ACTIONS(1270), - [anon_sym_to_json] = ACTIONS(1270), - [anon_sym_to_string] = ACTIONS(1270), - [anon_sym_to_float] = ACTIONS(1270), - [anon_sym_bash] = ACTIONS(1270), - [anon_sym_fish] = ACTIONS(1270), - [anon_sym_raw] = ACTIONS(1270), - [anon_sym_sh] = ACTIONS(1270), - [anon_sym_zsh] = ACTIONS(1270), - [anon_sym_random] = ACTIONS(1270), - [anon_sym_random_boolean] = ACTIONS(1270), - [anon_sym_random_float] = ACTIONS(1270), - [anon_sym_random_integer] = ACTIONS(1270), - [anon_sym_columns] = ACTIONS(1270), - [anon_sym_rows] = ACTIONS(1270), - [anon_sym_reverse] = ACTIONS(1270), - }, - [331] = { - [sym_math_operator] = STATE(652), - [sym_logic_operator] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_elseif] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [sym_integer] = ACTIONS(1274), - [sym_float] = ACTIONS(1272), - [sym_string] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_map] = ACTIONS(1274), - [anon_sym_async] = ACTIONS(1274), - [anon_sym_await] = ACTIONS(1274), - [anon_sym_COLON] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_elseif] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_transform] = ACTIONS(1274), - [anon_sym_filter] = ACTIONS(1274), - [anon_sym_find] = ACTIONS(1274), - [anon_sym_remove] = ACTIONS(1274), - [anon_sym_reduce] = ACTIONS(1274), - [anon_sym_select] = ACTIONS(1274), - [anon_sym_insert] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_table] = ACTIONS(1274), - [anon_sym_assert] = ACTIONS(1274), - [anon_sym_assert_equal] = ACTIONS(1274), - [anon_sym_download] = ACTIONS(1274), - [anon_sym_help] = ACTIONS(1274), - [anon_sym_length] = ACTIONS(1274), - [anon_sym_output] = ACTIONS(1274), - [anon_sym_output_error] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1274), - [anon_sym_append] = ACTIONS(1274), - [anon_sym_metadata] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1274), - [anon_sym_read] = ACTIONS(1274), - [anon_sym_workdir] = ACTIONS(1274), - [anon_sym_write] = ACTIONS(1274), - [anon_sym_from_json] = ACTIONS(1274), - [anon_sym_to_json] = ACTIONS(1274), - [anon_sym_to_string] = ACTIONS(1274), - [anon_sym_to_float] = ACTIONS(1274), - [anon_sym_bash] = ACTIONS(1274), - [anon_sym_fish] = ACTIONS(1274), - [anon_sym_raw] = ACTIONS(1274), - [anon_sym_sh] = ACTIONS(1274), - [anon_sym_zsh] = ACTIONS(1274), - [anon_sym_random] = ACTIONS(1274), - [anon_sym_random_boolean] = ACTIONS(1274), - [anon_sym_random_float] = ACTIONS(1274), - [anon_sym_random_integer] = ACTIONS(1274), - [anon_sym_columns] = ACTIONS(1274), - [anon_sym_rows] = ACTIONS(1274), - [anon_sym_reverse] = ACTIONS(1274), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1276), - [sym_integer] = ACTIONS(1278), - [sym_float] = ACTIONS(1276), - [sym_string] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_RBRACK] = ACTIONS(1276), - [anon_sym_map] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1278), - [anon_sym_await] = ACTIONS(1278), - [anon_sym_COLON] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_elseif] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_EQ_GT] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_transform] = ACTIONS(1278), - [anon_sym_filter] = ACTIONS(1278), - [anon_sym_find] = ACTIONS(1278), - [anon_sym_remove] = ACTIONS(1278), - [anon_sym_reduce] = ACTIONS(1278), - [anon_sym_select] = ACTIONS(1278), - [anon_sym_insert] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_table] = ACTIONS(1278), - [anon_sym_assert] = ACTIONS(1278), - [anon_sym_assert_equal] = ACTIONS(1278), - [anon_sym_download] = ACTIONS(1278), - [anon_sym_help] = ACTIONS(1278), - [anon_sym_length] = ACTIONS(1278), - [anon_sym_output] = ACTIONS(1278), - [anon_sym_output_error] = ACTIONS(1278), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_append] = ACTIONS(1278), - [anon_sym_metadata] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1278), - [anon_sym_read] = ACTIONS(1278), - [anon_sym_workdir] = ACTIONS(1278), - [anon_sym_write] = ACTIONS(1278), - [anon_sym_from_json] = ACTIONS(1278), - [anon_sym_to_json] = ACTIONS(1278), - [anon_sym_to_string] = ACTIONS(1278), - [anon_sym_to_float] = ACTIONS(1278), - [anon_sym_bash] = ACTIONS(1278), - [anon_sym_fish] = ACTIONS(1278), - [anon_sym_raw] = ACTIONS(1278), - [anon_sym_sh] = ACTIONS(1278), - [anon_sym_zsh] = ACTIONS(1278), - [anon_sym_random] = ACTIONS(1278), - [anon_sym_random_boolean] = ACTIONS(1278), - [anon_sym_random_float] = ACTIONS(1278), - [anon_sym_random_integer] = ACTIONS(1278), - [anon_sym_columns] = ACTIONS(1278), - [anon_sym_rows] = ACTIONS(1278), - [anon_sym_reverse] = ACTIONS(1278), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [sym_integer] = ACTIONS(1282), - [sym_float] = ACTIONS(1280), - [sym_string] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_map] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_elseif] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_transform] = ACTIONS(1282), - [anon_sym_filter] = ACTIONS(1282), - [anon_sym_find] = ACTIONS(1282), - [anon_sym_remove] = ACTIONS(1282), - [anon_sym_reduce] = ACTIONS(1282), - [anon_sym_select] = ACTIONS(1282), - [anon_sym_insert] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_table] = ACTIONS(1282), - [anon_sym_assert] = ACTIONS(1282), - [anon_sym_assert_equal] = ACTIONS(1282), - [anon_sym_download] = ACTIONS(1282), - [anon_sym_help] = ACTIONS(1282), - [anon_sym_length] = ACTIONS(1282), - [anon_sym_output] = ACTIONS(1282), - [anon_sym_output_error] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_append] = ACTIONS(1282), - [anon_sym_metadata] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1282), - [anon_sym_read] = ACTIONS(1282), - [anon_sym_workdir] = ACTIONS(1282), - [anon_sym_write] = ACTIONS(1282), - [anon_sym_from_json] = ACTIONS(1282), - [anon_sym_to_json] = ACTIONS(1282), - [anon_sym_to_string] = ACTIONS(1282), - [anon_sym_to_float] = ACTIONS(1282), - [anon_sym_bash] = ACTIONS(1282), - [anon_sym_fish] = ACTIONS(1282), - [anon_sym_raw] = ACTIONS(1282), - [anon_sym_sh] = ACTIONS(1282), - [anon_sym_zsh] = ACTIONS(1282), - [anon_sym_random] = ACTIONS(1282), - [anon_sym_random_boolean] = ACTIONS(1282), - [anon_sym_random_float] = ACTIONS(1282), - [anon_sym_random_integer] = ACTIONS(1282), - [anon_sym_columns] = ACTIONS(1282), - [anon_sym_rows] = ACTIONS(1282), - [anon_sym_reverse] = ACTIONS(1282), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [sym_integer] = ACTIONS(1286), - [sym_float] = ACTIONS(1284), - [sym_string] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_map] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1286), - [anon_sym_await] = ACTIONS(1286), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_elseif] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_transform] = ACTIONS(1286), - [anon_sym_filter] = ACTIONS(1286), - [anon_sym_find] = ACTIONS(1286), - [anon_sym_remove] = ACTIONS(1286), - [anon_sym_reduce] = ACTIONS(1286), - [anon_sym_select] = ACTIONS(1286), - [anon_sym_insert] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_table] = ACTIONS(1286), - [anon_sym_assert] = ACTIONS(1286), - [anon_sym_assert_equal] = ACTIONS(1286), - [anon_sym_download] = ACTIONS(1286), - [anon_sym_help] = ACTIONS(1286), - [anon_sym_length] = ACTIONS(1286), - [anon_sym_output] = ACTIONS(1286), - [anon_sym_output_error] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_append] = ACTIONS(1286), - [anon_sym_metadata] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1286), - [anon_sym_read] = ACTIONS(1286), - [anon_sym_workdir] = ACTIONS(1286), - [anon_sym_write] = ACTIONS(1286), - [anon_sym_from_json] = ACTIONS(1286), - [anon_sym_to_json] = ACTIONS(1286), - [anon_sym_to_string] = ACTIONS(1286), - [anon_sym_to_float] = ACTIONS(1286), - [anon_sym_bash] = ACTIONS(1286), - [anon_sym_fish] = ACTIONS(1286), - [anon_sym_raw] = ACTIONS(1286), - [anon_sym_sh] = ACTIONS(1286), - [anon_sym_zsh] = ACTIONS(1286), - [anon_sym_random] = ACTIONS(1286), - [anon_sym_random_boolean] = ACTIONS(1286), - [anon_sym_random_float] = ACTIONS(1286), - [anon_sym_random_integer] = ACTIONS(1286), - [anon_sym_columns] = ACTIONS(1286), - [anon_sym_rows] = ACTIONS(1286), - [anon_sym_reverse] = ACTIONS(1286), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [sym_integer] = ACTIONS(1290), - [sym_float] = ACTIONS(1288), - [sym_string] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_map] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_elseif] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_transform] = ACTIONS(1290), - [anon_sym_filter] = ACTIONS(1290), - [anon_sym_find] = ACTIONS(1290), - [anon_sym_remove] = ACTIONS(1290), - [anon_sym_reduce] = ACTIONS(1290), - [anon_sym_select] = ACTIONS(1290), - [anon_sym_insert] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_table] = ACTIONS(1290), - [anon_sym_assert] = ACTIONS(1290), - [anon_sym_assert_equal] = ACTIONS(1290), - [anon_sym_download] = ACTIONS(1290), - [anon_sym_help] = ACTIONS(1290), - [anon_sym_length] = ACTIONS(1290), - [anon_sym_output] = ACTIONS(1290), - [anon_sym_output_error] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_append] = ACTIONS(1290), - [anon_sym_metadata] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1290), - [anon_sym_read] = ACTIONS(1290), - [anon_sym_workdir] = ACTIONS(1290), - [anon_sym_write] = ACTIONS(1290), - [anon_sym_from_json] = ACTIONS(1290), - [anon_sym_to_json] = ACTIONS(1290), - [anon_sym_to_string] = ACTIONS(1290), - [anon_sym_to_float] = ACTIONS(1290), - [anon_sym_bash] = ACTIONS(1290), - [anon_sym_fish] = ACTIONS(1290), - [anon_sym_raw] = ACTIONS(1290), - [anon_sym_sh] = ACTIONS(1290), - [anon_sym_zsh] = ACTIONS(1290), - [anon_sym_random] = ACTIONS(1290), - [anon_sym_random_boolean] = ACTIONS(1290), - [anon_sym_random_float] = ACTIONS(1290), - [anon_sym_random_integer] = ACTIONS(1290), - [anon_sym_columns] = ACTIONS(1290), - [anon_sym_rows] = ACTIONS(1290), - [anon_sym_reverse] = ACTIONS(1290), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [338] = { - [sym_else_if] = STATE(349), - [sym_else] = STATE(332), - [aux_sym_if_else_repeat1] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_elseif] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1296), - [sym_float] = ACTIONS(1294), - [sym_string] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_map] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_EQ_GT] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1296), - [anon_sym_find] = ACTIONS(1296), - [anon_sym_remove] = ACTIONS(1296), - [anon_sym_reduce] = ACTIONS(1296), - [anon_sym_select] = ACTIONS(1296), - [anon_sym_insert] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_table] = ACTIONS(1296), - [anon_sym_assert] = ACTIONS(1296), - [anon_sym_assert_equal] = ACTIONS(1296), - [anon_sym_download] = ACTIONS(1296), - [anon_sym_help] = ACTIONS(1296), - [anon_sym_length] = ACTIONS(1296), - [anon_sym_output] = ACTIONS(1296), - [anon_sym_output_error] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_append] = ACTIONS(1296), - [anon_sym_metadata] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [anon_sym_read] = ACTIONS(1296), - [anon_sym_workdir] = ACTIONS(1296), - [anon_sym_write] = ACTIONS(1296), - [anon_sym_from_json] = ACTIONS(1296), - [anon_sym_to_json] = ACTIONS(1296), - [anon_sym_to_string] = ACTIONS(1296), - [anon_sym_to_float] = ACTIONS(1296), - [anon_sym_bash] = ACTIONS(1296), - [anon_sym_fish] = ACTIONS(1296), - [anon_sym_raw] = ACTIONS(1296), - [anon_sym_sh] = ACTIONS(1296), - [anon_sym_zsh] = ACTIONS(1296), - [anon_sym_random] = ACTIONS(1296), - [anon_sym_random_boolean] = ACTIONS(1296), - [anon_sym_random_float] = ACTIONS(1296), - [anon_sym_random_integer] = ACTIONS(1296), - [anon_sym_columns] = ACTIONS(1296), - [anon_sym_rows] = ACTIONS(1296), - [anon_sym_reverse] = ACTIONS(1296), - }, - [340] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_COMMA] = ACTIONS(1298), - [sym_integer] = ACTIONS(1300), - [sym_float] = ACTIONS(1298), - [sym_string] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_map] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_await] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_elseif] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_EQ_GT] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_transform] = ACTIONS(1300), - [anon_sym_filter] = ACTIONS(1300), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1300), - [anon_sym_reduce] = ACTIONS(1300), - [anon_sym_select] = ACTIONS(1300), - [anon_sym_insert] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_table] = ACTIONS(1300), - [anon_sym_assert] = ACTIONS(1300), - [anon_sym_assert_equal] = ACTIONS(1300), - [anon_sym_download] = ACTIONS(1300), - [anon_sym_help] = ACTIONS(1300), - [anon_sym_length] = ACTIONS(1300), - [anon_sym_output] = ACTIONS(1300), - [anon_sym_output_error] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_append] = ACTIONS(1300), - [anon_sym_metadata] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [anon_sym_read] = ACTIONS(1300), - [anon_sym_workdir] = ACTIONS(1300), - [anon_sym_write] = ACTIONS(1300), - [anon_sym_from_json] = ACTIONS(1300), - [anon_sym_to_json] = ACTIONS(1300), - [anon_sym_to_string] = ACTIONS(1300), - [anon_sym_to_float] = ACTIONS(1300), - [anon_sym_bash] = ACTIONS(1300), - [anon_sym_fish] = ACTIONS(1300), - [anon_sym_raw] = ACTIONS(1300), - [anon_sym_sh] = ACTIONS(1300), - [anon_sym_zsh] = ACTIONS(1300), - [anon_sym_random] = ACTIONS(1300), - [anon_sym_random_boolean] = ACTIONS(1300), - [anon_sym_random_float] = ACTIONS(1300), - [anon_sym_random_integer] = ACTIONS(1300), - [anon_sym_columns] = ACTIONS(1300), - [anon_sym_rows] = ACTIONS(1300), - [anon_sym_reverse] = ACTIONS(1300), - }, - [342] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [343] = { - [sym_else_if] = STATE(338), - [sym_else] = STATE(337), - [aux_sym_if_else_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [sym_integer] = ACTIONS(1099), - [sym_float] = ACTIONS(1097), - [sym_string] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_map] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_EQ_EQ] = ACTIONS(1097), - [anon_sym_BANG_EQ] = ACTIONS(1097), - [anon_sym_AMP_AMP] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1097), - [anon_sym_LT_EQ] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_elseif] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_EQ_GT] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_transform] = ACTIONS(1099), - [anon_sym_filter] = ACTIONS(1099), - [anon_sym_find] = ACTIONS(1099), - [anon_sym_remove] = ACTIONS(1099), - [anon_sym_reduce] = ACTIONS(1099), - [anon_sym_select] = ACTIONS(1099), - [anon_sym_insert] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_table] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1099), - [anon_sym_assert_equal] = ACTIONS(1099), - [anon_sym_download] = ACTIONS(1099), - [anon_sym_help] = ACTIONS(1099), - [anon_sym_length] = ACTIONS(1099), - [anon_sym_output] = ACTIONS(1099), - [anon_sym_output_error] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_append] = ACTIONS(1099), - [anon_sym_metadata] = ACTIONS(1099), - [anon_sym_move] = ACTIONS(1099), - [anon_sym_read] = ACTIONS(1099), - [anon_sym_workdir] = ACTIONS(1099), - [anon_sym_write] = ACTIONS(1099), - [anon_sym_from_json] = ACTIONS(1099), - [anon_sym_to_json] = ACTIONS(1099), - [anon_sym_to_string] = ACTIONS(1099), - [anon_sym_to_float] = ACTIONS(1099), - [anon_sym_bash] = ACTIONS(1099), - [anon_sym_fish] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1099), - [anon_sym_sh] = ACTIONS(1099), - [anon_sym_zsh] = ACTIONS(1099), - [anon_sym_random] = ACTIONS(1099), - [anon_sym_random_boolean] = ACTIONS(1099), - [anon_sym_random_float] = ACTIONS(1099), - [anon_sym_random_integer] = ACTIONS(1099), - [anon_sym_columns] = ACTIONS(1099), - [anon_sym_rows] = ACTIONS(1099), - [anon_sym_reverse] = ACTIONS(1099), - }, - [344] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_COMMA] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_RBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [sym_integer] = ACTIONS(1306), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_map] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_elseif] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_EQ_GT] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_transform] = ACTIONS(1306), - [anon_sym_filter] = ACTIONS(1306), - [anon_sym_find] = ACTIONS(1306), - [anon_sym_remove] = ACTIONS(1306), - [anon_sym_reduce] = ACTIONS(1306), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_table] = ACTIONS(1306), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_assert_equal] = ACTIONS(1306), - [anon_sym_download] = ACTIONS(1306), - [anon_sym_help] = ACTIONS(1306), - [anon_sym_length] = ACTIONS(1306), - [anon_sym_output] = ACTIONS(1306), - [anon_sym_output_error] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_append] = ACTIONS(1306), - [anon_sym_metadata] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1306), - [anon_sym_read] = ACTIONS(1306), - [anon_sym_workdir] = ACTIONS(1306), - [anon_sym_write] = ACTIONS(1306), - [anon_sym_from_json] = ACTIONS(1306), - [anon_sym_to_json] = ACTIONS(1306), - [anon_sym_to_string] = ACTIONS(1306), - [anon_sym_to_float] = ACTIONS(1306), - [anon_sym_bash] = ACTIONS(1306), - [anon_sym_fish] = ACTIONS(1306), - [anon_sym_raw] = ACTIONS(1306), - [anon_sym_sh] = ACTIONS(1306), - [anon_sym_zsh] = ACTIONS(1306), - [anon_sym_random] = ACTIONS(1306), - [anon_sym_random_boolean] = ACTIONS(1306), - [anon_sym_random_float] = ACTIONS(1306), - [anon_sym_random_integer] = ACTIONS(1306), - [anon_sym_columns] = ACTIONS(1306), - [anon_sym_rows] = ACTIONS(1306), - [anon_sym_reverse] = ACTIONS(1306), - }, - [346] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [347] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [348] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [349] = { - [sym_else_if] = STATE(349), - [aux_sym_if_else_repeat1] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [sym_integer] = ACTIONS(1152), - [sym_float] = ACTIONS(1150), - [sym_string] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_map] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_elseif] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_transform] = ACTIONS(1152), - [anon_sym_filter] = ACTIONS(1152), - [anon_sym_find] = ACTIONS(1152), - [anon_sym_remove] = ACTIONS(1152), - [anon_sym_reduce] = ACTIONS(1152), - [anon_sym_select] = ACTIONS(1152), - [anon_sym_insert] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_table] = ACTIONS(1152), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_assert_equal] = ACTIONS(1152), - [anon_sym_download] = ACTIONS(1152), - [anon_sym_help] = ACTIONS(1152), - [anon_sym_length] = ACTIONS(1152), - [anon_sym_output] = ACTIONS(1152), - [anon_sym_output_error] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_append] = ACTIONS(1152), - [anon_sym_metadata] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [anon_sym_read] = ACTIONS(1152), - [anon_sym_workdir] = ACTIONS(1152), - [anon_sym_write] = ACTIONS(1152), - [anon_sym_from_json] = ACTIONS(1152), - [anon_sym_to_json] = ACTIONS(1152), - [anon_sym_to_string] = ACTIONS(1152), - [anon_sym_to_float] = ACTIONS(1152), - [anon_sym_bash] = ACTIONS(1152), - [anon_sym_fish] = ACTIONS(1152), - [anon_sym_raw] = ACTIONS(1152), - [anon_sym_sh] = ACTIONS(1152), - [anon_sym_zsh] = ACTIONS(1152), - [anon_sym_random] = ACTIONS(1152), - [anon_sym_random_boolean] = ACTIONS(1152), - [anon_sym_random_float] = ACTIONS(1152), - [anon_sym_random_integer] = ACTIONS(1152), - [anon_sym_columns] = ACTIONS(1152), - [anon_sym_rows] = ACTIONS(1152), - [anon_sym_reverse] = ACTIONS(1152), - }, - [350] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1233), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [351] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_elseif] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [352] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [353] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [anon_sym_COMMA] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_RBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [354] = { - [sym_expression] = STATE(731), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_elseif] = ACTIONS(924), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [355] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_elseif] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [356] = { - [sym_math_operator] = STATE(674), - [sym_logic_operator] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1311), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [357] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_elseif] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [358] = { - [sym_expression] = STATE(731), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_elseif] = ACTIONS(880), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [359] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [360] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_elseif] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [361] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_elseif] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [362] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [sym_integer] = ACTIONS(1188), - [sym_float] = ACTIONS(1186), - [sym_string] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_map] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_EQ_GT] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_transform] = ACTIONS(1188), - [anon_sym_filter] = ACTIONS(1188), - [anon_sym_find] = ACTIONS(1188), - [anon_sym_remove] = ACTIONS(1188), - [anon_sym_reduce] = ACTIONS(1188), - [anon_sym_select] = ACTIONS(1188), - [anon_sym_insert] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_table] = ACTIONS(1188), - [anon_sym_assert] = ACTIONS(1188), - [anon_sym_assert_equal] = ACTIONS(1188), - [anon_sym_download] = ACTIONS(1188), - [anon_sym_help] = ACTIONS(1188), - [anon_sym_length] = ACTIONS(1188), - [anon_sym_output] = ACTIONS(1188), - [anon_sym_output_error] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_append] = ACTIONS(1188), - [anon_sym_metadata] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [anon_sym_read] = ACTIONS(1188), - [anon_sym_workdir] = ACTIONS(1188), - [anon_sym_write] = ACTIONS(1188), - [anon_sym_from_json] = ACTIONS(1188), - [anon_sym_to_json] = ACTIONS(1188), - [anon_sym_to_string] = ACTIONS(1188), - [anon_sym_to_float] = ACTIONS(1188), - [anon_sym_bash] = ACTIONS(1188), - [anon_sym_fish] = ACTIONS(1188), - [anon_sym_raw] = ACTIONS(1188), - [anon_sym_sh] = ACTIONS(1188), - [anon_sym_zsh] = ACTIONS(1188), - [anon_sym_random] = ACTIONS(1188), - [anon_sym_random_boolean] = ACTIONS(1188), - [anon_sym_random_float] = ACTIONS(1188), - [anon_sym_random_integer] = ACTIONS(1188), - [anon_sym_columns] = ACTIONS(1188), - [anon_sym_rows] = ACTIONS(1188), - [anon_sym_reverse] = ACTIONS(1188), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(1252), - [sym_integer] = ACTIONS(1254), - [sym_float] = ACTIONS(1252), - [sym_string] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1252), - [anon_sym_map] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1254), - [anon_sym_await] = ACTIONS(1254), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1254), - [anon_sym_EQ_GT] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_transform] = ACTIONS(1254), - [anon_sym_filter] = ACTIONS(1254), - [anon_sym_find] = ACTIONS(1254), - [anon_sym_remove] = ACTIONS(1254), - [anon_sym_reduce] = ACTIONS(1254), - [anon_sym_select] = ACTIONS(1254), - [anon_sym_insert] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_table] = ACTIONS(1254), - [anon_sym_assert] = ACTIONS(1254), - [anon_sym_assert_equal] = ACTIONS(1254), - [anon_sym_download] = ACTIONS(1254), - [anon_sym_help] = ACTIONS(1254), - [anon_sym_length] = ACTIONS(1254), - [anon_sym_output] = ACTIONS(1254), - [anon_sym_output_error] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_append] = ACTIONS(1254), - [anon_sym_metadata] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1254), - [anon_sym_read] = ACTIONS(1254), - [anon_sym_workdir] = ACTIONS(1254), - [anon_sym_write] = ACTIONS(1254), - [anon_sym_from_json] = ACTIONS(1254), - [anon_sym_to_json] = ACTIONS(1254), - [anon_sym_to_string] = ACTIONS(1254), - [anon_sym_to_float] = ACTIONS(1254), - [anon_sym_bash] = ACTIONS(1254), - [anon_sym_fish] = ACTIONS(1254), - [anon_sym_raw] = ACTIONS(1254), - [anon_sym_sh] = ACTIONS(1254), - [anon_sym_zsh] = ACTIONS(1254), - [anon_sym_random] = ACTIONS(1254), - [anon_sym_random_boolean] = ACTIONS(1254), - [anon_sym_random_float] = ACTIONS(1254), - [anon_sym_random_integer] = ACTIONS(1254), - [anon_sym_columns] = ACTIONS(1254), - [anon_sym_rows] = ACTIONS(1254), - [anon_sym_reverse] = ACTIONS(1254), - }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_COMMA] = ACTIONS(1198), - [sym_integer] = ACTIONS(1200), - [sym_float] = ACTIONS(1198), - [sym_string] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_map] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_await] = ACTIONS(1200), - [anon_sym_COLON] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_transform] = ACTIONS(1200), - [anon_sym_filter] = ACTIONS(1200), - [anon_sym_find] = ACTIONS(1200), - [anon_sym_remove] = ACTIONS(1200), - [anon_sym_reduce] = ACTIONS(1200), - [anon_sym_select] = ACTIONS(1200), - [anon_sym_insert] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_table] = ACTIONS(1200), - [anon_sym_assert] = ACTIONS(1200), - [anon_sym_assert_equal] = ACTIONS(1200), - [anon_sym_download] = ACTIONS(1200), - [anon_sym_help] = ACTIONS(1200), - [anon_sym_length] = ACTIONS(1200), - [anon_sym_output] = ACTIONS(1200), - [anon_sym_output_error] = ACTIONS(1200), - [anon_sym_type] = ACTIONS(1200), - [anon_sym_append] = ACTIONS(1200), - [anon_sym_metadata] = ACTIONS(1200), - [anon_sym_move] = ACTIONS(1200), - [anon_sym_read] = ACTIONS(1200), - [anon_sym_workdir] = ACTIONS(1200), - [anon_sym_write] = ACTIONS(1200), - [anon_sym_from_json] = ACTIONS(1200), - [anon_sym_to_json] = ACTIONS(1200), - [anon_sym_to_string] = ACTIONS(1200), - [anon_sym_to_float] = ACTIONS(1200), - [anon_sym_bash] = ACTIONS(1200), - [anon_sym_fish] = ACTIONS(1200), - [anon_sym_raw] = ACTIONS(1200), - [anon_sym_sh] = ACTIONS(1200), - [anon_sym_zsh] = ACTIONS(1200), - [anon_sym_random] = ACTIONS(1200), - [anon_sym_random_boolean] = ACTIONS(1200), - [anon_sym_random_float] = ACTIONS(1200), - [anon_sym_random_integer] = ACTIONS(1200), - [anon_sym_columns] = ACTIONS(1200), - [anon_sym_rows] = ACTIONS(1200), - [anon_sym_reverse] = ACTIONS(1200), - }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1276), - [sym_integer] = ACTIONS(1278), - [sym_float] = ACTIONS(1276), - [sym_string] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_RBRACK] = ACTIONS(1276), - [anon_sym_map] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1278), - [anon_sym_await] = ACTIONS(1278), - [anon_sym_COLON] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_EQ_GT] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_transform] = ACTIONS(1278), - [anon_sym_filter] = ACTIONS(1278), - [anon_sym_find] = ACTIONS(1278), - [anon_sym_remove] = ACTIONS(1278), - [anon_sym_reduce] = ACTIONS(1278), - [anon_sym_select] = ACTIONS(1278), - [anon_sym_insert] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_table] = ACTIONS(1278), - [anon_sym_assert] = ACTIONS(1278), - [anon_sym_assert_equal] = ACTIONS(1278), - [anon_sym_download] = ACTIONS(1278), - [anon_sym_help] = ACTIONS(1278), - [anon_sym_length] = ACTIONS(1278), - [anon_sym_output] = ACTIONS(1278), - [anon_sym_output_error] = ACTIONS(1278), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_append] = ACTIONS(1278), - [anon_sym_metadata] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1278), - [anon_sym_read] = ACTIONS(1278), - [anon_sym_workdir] = ACTIONS(1278), - [anon_sym_write] = ACTIONS(1278), - [anon_sym_from_json] = ACTIONS(1278), - [anon_sym_to_json] = ACTIONS(1278), - [anon_sym_to_string] = ACTIONS(1278), - [anon_sym_to_float] = ACTIONS(1278), - [anon_sym_bash] = ACTIONS(1278), - [anon_sym_fish] = ACTIONS(1278), - [anon_sym_raw] = ACTIONS(1278), - [anon_sym_sh] = ACTIONS(1278), - [anon_sym_zsh] = ACTIONS(1278), - [anon_sym_random] = ACTIONS(1278), - [anon_sym_random_boolean] = ACTIONS(1278), - [anon_sym_random_float] = ACTIONS(1278), - [anon_sym_random_integer] = ACTIONS(1278), - [anon_sym_columns] = ACTIONS(1278), - [anon_sym_rows] = ACTIONS(1278), - [anon_sym_reverse] = ACTIONS(1278), - }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_identifier] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_COMMA] = ACTIONS(1219), - [sym_integer] = ACTIONS(1221), - [sym_float] = ACTIONS(1219), - [sym_string] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_RBRACK] = ACTIONS(1219), - [anon_sym_map] = ACTIONS(1221), - [anon_sym_async] = ACTIONS(1221), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1219), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_AMP_AMP] = ACTIONS(1219), - [anon_sym_PIPE_PIPE] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1221), - [anon_sym_EQ_GT] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_transform] = ACTIONS(1221), - [anon_sym_filter] = ACTIONS(1221), - [anon_sym_find] = ACTIONS(1221), - [anon_sym_remove] = ACTIONS(1221), - [anon_sym_reduce] = ACTIONS(1221), - [anon_sym_select] = ACTIONS(1221), - [anon_sym_insert] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_table] = ACTIONS(1221), - [anon_sym_assert] = ACTIONS(1221), - [anon_sym_assert_equal] = ACTIONS(1221), - [anon_sym_download] = ACTIONS(1221), - [anon_sym_help] = ACTIONS(1221), - [anon_sym_length] = ACTIONS(1221), - [anon_sym_output] = ACTIONS(1221), - [anon_sym_output_error] = ACTIONS(1221), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_append] = ACTIONS(1221), - [anon_sym_metadata] = ACTIONS(1221), - [anon_sym_move] = ACTIONS(1221), - [anon_sym_read] = ACTIONS(1221), - [anon_sym_workdir] = ACTIONS(1221), - [anon_sym_write] = ACTIONS(1221), - [anon_sym_from_json] = ACTIONS(1221), - [anon_sym_to_json] = ACTIONS(1221), - [anon_sym_to_string] = ACTIONS(1221), - [anon_sym_to_float] = ACTIONS(1221), - [anon_sym_bash] = ACTIONS(1221), - [anon_sym_fish] = ACTIONS(1221), - [anon_sym_raw] = ACTIONS(1221), - [anon_sym_sh] = ACTIONS(1221), - [anon_sym_zsh] = ACTIONS(1221), - [anon_sym_random] = ACTIONS(1221), - [anon_sym_random_boolean] = ACTIONS(1221), - [anon_sym_random_float] = ACTIONS(1221), - [anon_sym_random_integer] = ACTIONS(1221), - [anon_sym_columns] = ACTIONS(1221), - [anon_sym_rows] = ACTIONS(1221), - [anon_sym_reverse] = ACTIONS(1221), - }, - [368] = { - [sym_math_operator] = STATE(553), - [sym_logic_operator] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1311), - [sym_integer] = ACTIONS(1135), - [sym_float] = ACTIONS(1133), - [sym_string] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_map] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_await] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_EQ_GT] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_transform] = ACTIONS(1135), - [anon_sym_filter] = ACTIONS(1135), - [anon_sym_find] = ACTIONS(1135), - [anon_sym_remove] = ACTIONS(1135), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1135), - [anon_sym_insert] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_table] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1135), - [anon_sym_assert_equal] = ACTIONS(1135), - [anon_sym_download] = ACTIONS(1135), - [anon_sym_help] = ACTIONS(1135), - [anon_sym_length] = ACTIONS(1135), - [anon_sym_output] = ACTIONS(1135), - [anon_sym_output_error] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_append] = ACTIONS(1135), - [anon_sym_metadata] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [anon_sym_read] = ACTIONS(1135), - [anon_sym_workdir] = ACTIONS(1135), - [anon_sym_write] = ACTIONS(1135), - [anon_sym_from_json] = ACTIONS(1135), - [anon_sym_to_json] = ACTIONS(1135), - [anon_sym_to_string] = ACTIONS(1135), - [anon_sym_to_float] = ACTIONS(1135), - [anon_sym_bash] = ACTIONS(1135), - [anon_sym_fish] = ACTIONS(1135), - [anon_sym_raw] = ACTIONS(1135), - [anon_sym_sh] = ACTIONS(1135), - [anon_sym_zsh] = ACTIONS(1135), - [anon_sym_random] = ACTIONS(1135), - [anon_sym_random_boolean] = ACTIONS(1135), - [anon_sym_random_float] = ACTIONS(1135), - [anon_sym_random_integer] = ACTIONS(1135), - [anon_sym_columns] = ACTIONS(1135), - [anon_sym_rows] = ACTIONS(1135), - [anon_sym_reverse] = ACTIONS(1135), - }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(836), - [sym_identifier] = ACTIONS(862), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [sym_integer] = ACTIONS(862), - [sym_float] = ACTIONS(836), - [sym_string] = ACTIONS(836), - [anon_sym_true] = ACTIONS(862), - [anon_sym_false] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_map] = ACTIONS(862), - [anon_sym_async] = ACTIONS(862), - [anon_sym_await] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_BANG_EQ] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(836), - [anon_sym_if] = ACTIONS(862), - [anon_sym_match] = ACTIONS(862), - [anon_sym_EQ_GT] = ACTIONS(836), - [anon_sym_while] = ACTIONS(862), - [anon_sym_for] = ACTIONS(862), - [anon_sym_transform] = ACTIONS(862), - [anon_sym_filter] = ACTIONS(862), - [anon_sym_find] = ACTIONS(862), - [anon_sym_remove] = ACTIONS(862), - [anon_sym_reduce] = ACTIONS(862), - [anon_sym_select] = ACTIONS(862), - [anon_sym_insert] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_table] = ACTIONS(862), - [anon_sym_assert] = ACTIONS(862), - [anon_sym_assert_equal] = ACTIONS(862), - [anon_sym_download] = ACTIONS(862), - [anon_sym_help] = ACTIONS(862), - [anon_sym_length] = ACTIONS(862), - [anon_sym_output] = ACTIONS(862), - [anon_sym_output_error] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_append] = ACTIONS(862), - [anon_sym_metadata] = ACTIONS(862), - [anon_sym_move] = ACTIONS(862), - [anon_sym_read] = ACTIONS(862), - [anon_sym_workdir] = ACTIONS(862), - [anon_sym_write] = ACTIONS(862), - [anon_sym_from_json] = ACTIONS(862), - [anon_sym_to_json] = ACTIONS(862), - [anon_sym_to_string] = ACTIONS(862), - [anon_sym_to_float] = ACTIONS(862), - [anon_sym_bash] = ACTIONS(862), - [anon_sym_fish] = ACTIONS(862), - [anon_sym_raw] = ACTIONS(862), - [anon_sym_sh] = ACTIONS(862), - [anon_sym_zsh] = ACTIONS(862), - [anon_sym_random] = ACTIONS(862), - [anon_sym_random_boolean] = ACTIONS(862), - [anon_sym_random_float] = ACTIONS(862), - [anon_sym_random_integer] = ACTIONS(862), - [anon_sym_columns] = ACTIONS(862), - [anon_sym_rows] = ACTIONS(862), - [anon_sym_reverse] = ACTIONS(862), - }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [sym_integer] = ACTIONS(1176), - [sym_float] = ACTIONS(1174), - [sym_string] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_map] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_await] = ACTIONS(1176), - [anon_sym_COLON] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1174), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_EQ_GT] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_transform] = ACTIONS(1176), - [anon_sym_filter] = ACTIONS(1176), - [anon_sym_find] = ACTIONS(1176), - [anon_sym_remove] = ACTIONS(1176), - [anon_sym_reduce] = ACTIONS(1176), - [anon_sym_select] = ACTIONS(1176), - [anon_sym_insert] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_table] = ACTIONS(1176), - [anon_sym_assert] = ACTIONS(1176), - [anon_sym_assert_equal] = ACTIONS(1176), - [anon_sym_download] = ACTIONS(1176), - [anon_sym_help] = ACTIONS(1176), - [anon_sym_length] = ACTIONS(1176), - [anon_sym_output] = ACTIONS(1176), - [anon_sym_output_error] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_append] = ACTIONS(1176), - [anon_sym_metadata] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [anon_sym_read] = ACTIONS(1176), - [anon_sym_workdir] = ACTIONS(1176), - [anon_sym_write] = ACTIONS(1176), - [anon_sym_from_json] = ACTIONS(1176), - [anon_sym_to_json] = ACTIONS(1176), - [anon_sym_to_string] = ACTIONS(1176), - [anon_sym_to_float] = ACTIONS(1176), - [anon_sym_bash] = ACTIONS(1176), - [anon_sym_fish] = ACTIONS(1176), - [anon_sym_raw] = ACTIONS(1176), - [anon_sym_sh] = ACTIONS(1176), - [anon_sym_zsh] = ACTIONS(1176), - [anon_sym_random] = ACTIONS(1176), - [anon_sym_random_boolean] = ACTIONS(1176), - [anon_sym_random_float] = ACTIONS(1176), - [anon_sym_random_integer] = ACTIONS(1176), - [anon_sym_columns] = ACTIONS(1176), - [anon_sym_rows] = ACTIONS(1176), - [anon_sym_reverse] = ACTIONS(1176), - }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [sym_integer] = ACTIONS(1196), - [sym_float] = ACTIONS(1194), - [sym_string] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_map] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_await] = ACTIONS(1196), - [anon_sym_COLON] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_EQ_GT] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_transform] = ACTIONS(1196), - [anon_sym_filter] = ACTIONS(1196), - [anon_sym_find] = ACTIONS(1196), - [anon_sym_remove] = ACTIONS(1196), - [anon_sym_reduce] = ACTIONS(1196), - [anon_sym_select] = ACTIONS(1196), - [anon_sym_insert] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_table] = ACTIONS(1196), - [anon_sym_assert] = ACTIONS(1196), - [anon_sym_assert_equal] = ACTIONS(1196), - [anon_sym_download] = ACTIONS(1196), - [anon_sym_help] = ACTIONS(1196), - [anon_sym_length] = ACTIONS(1196), - [anon_sym_output] = ACTIONS(1196), - [anon_sym_output_error] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_append] = ACTIONS(1196), - [anon_sym_metadata] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [anon_sym_read] = ACTIONS(1196), - [anon_sym_workdir] = ACTIONS(1196), - [anon_sym_write] = ACTIONS(1196), - [anon_sym_from_json] = ACTIONS(1196), - [anon_sym_to_json] = ACTIONS(1196), - [anon_sym_to_string] = ACTIONS(1196), - [anon_sym_to_float] = ACTIONS(1196), - [anon_sym_bash] = ACTIONS(1196), - [anon_sym_fish] = ACTIONS(1196), - [anon_sym_raw] = ACTIONS(1196), - [anon_sym_sh] = ACTIONS(1196), - [anon_sym_zsh] = ACTIONS(1196), - [anon_sym_random] = ACTIONS(1196), - [anon_sym_random_boolean] = ACTIONS(1196), - [anon_sym_random_float] = ACTIONS(1196), - [anon_sym_random_integer] = ACTIONS(1196), - [anon_sym_columns] = ACTIONS(1196), - [anon_sym_rows] = ACTIONS(1196), - [anon_sym_reverse] = ACTIONS(1196), - }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [sym_integer] = ACTIONS(1180), - [sym_float] = ACTIONS(1178), - [sym_string] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_map] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_COLON] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1178), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_EQ_GT] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_transform] = ACTIONS(1180), - [anon_sym_filter] = ACTIONS(1180), - [anon_sym_find] = ACTIONS(1180), - [anon_sym_remove] = ACTIONS(1180), - [anon_sym_reduce] = ACTIONS(1180), - [anon_sym_select] = ACTIONS(1180), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_table] = ACTIONS(1180), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_assert_equal] = ACTIONS(1180), - [anon_sym_download] = ACTIONS(1180), - [anon_sym_help] = ACTIONS(1180), - [anon_sym_length] = ACTIONS(1180), - [anon_sym_output] = ACTIONS(1180), - [anon_sym_output_error] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_append] = ACTIONS(1180), - [anon_sym_metadata] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [anon_sym_read] = ACTIONS(1180), - [anon_sym_workdir] = ACTIONS(1180), - [anon_sym_write] = ACTIONS(1180), - [anon_sym_from_json] = ACTIONS(1180), - [anon_sym_to_json] = ACTIONS(1180), - [anon_sym_to_string] = ACTIONS(1180), - [anon_sym_to_float] = ACTIONS(1180), - [anon_sym_bash] = ACTIONS(1180), - [anon_sym_fish] = ACTIONS(1180), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_sh] = ACTIONS(1180), - [anon_sym_zsh] = ACTIONS(1180), - [anon_sym_random] = ACTIONS(1180), - [anon_sym_random_boolean] = ACTIONS(1180), - [anon_sym_random_float] = ACTIONS(1180), - [anon_sym_random_integer] = ACTIONS(1180), - [anon_sym_columns] = ACTIONS(1180), - [anon_sym_rows] = ACTIONS(1180), - [anon_sym_reverse] = ACTIONS(1180), - }, - [373] = { - [sym_expression] = STATE(750), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [374] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_COMMA] = ACTIONS(1190), - [sym_integer] = ACTIONS(1192), - [sym_float] = ACTIONS(1190), - [sym_string] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_RBRACK] = ACTIONS(1190), - [anon_sym_map] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_await] = ACTIONS(1192), - [anon_sym_COLON] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_EQ_GT] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_transform] = ACTIONS(1192), - [anon_sym_filter] = ACTIONS(1192), - [anon_sym_find] = ACTIONS(1192), - [anon_sym_remove] = ACTIONS(1192), - [anon_sym_reduce] = ACTIONS(1192), - [anon_sym_select] = ACTIONS(1192), - [anon_sym_insert] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_table] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1192), - [anon_sym_assert_equal] = ACTIONS(1192), - [anon_sym_download] = ACTIONS(1192), - [anon_sym_help] = ACTIONS(1192), - [anon_sym_length] = ACTIONS(1192), - [anon_sym_output] = ACTIONS(1192), - [anon_sym_output_error] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_append] = ACTIONS(1192), - [anon_sym_metadata] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [anon_sym_read] = ACTIONS(1192), - [anon_sym_workdir] = ACTIONS(1192), - [anon_sym_write] = ACTIONS(1192), - [anon_sym_from_json] = ACTIONS(1192), - [anon_sym_to_json] = ACTIONS(1192), - [anon_sym_to_string] = ACTIONS(1192), - [anon_sym_to_float] = ACTIONS(1192), - [anon_sym_bash] = ACTIONS(1192), - [anon_sym_fish] = ACTIONS(1192), - [anon_sym_raw] = ACTIONS(1192), - [anon_sym_sh] = ACTIONS(1192), - [anon_sym_zsh] = ACTIONS(1192), - [anon_sym_random] = ACTIONS(1192), - [anon_sym_random_boolean] = ACTIONS(1192), - [anon_sym_random_float] = ACTIONS(1192), - [anon_sym_random_integer] = ACTIONS(1192), - [anon_sym_columns] = ACTIONS(1192), - [anon_sym_rows] = ACTIONS(1192), - [anon_sym_reverse] = ACTIONS(1192), - }, - [376] = { - [sym_expression] = STATE(731), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_COMMA] = ACTIONS(1298), - [sym_integer] = ACTIONS(1300), - [sym_float] = ACTIONS(1298), - [sym_string] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_map] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_await] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_EQ_GT] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_transform] = ACTIONS(1300), - [anon_sym_filter] = ACTIONS(1300), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1300), - [anon_sym_reduce] = ACTIONS(1300), - [anon_sym_select] = ACTIONS(1300), - [anon_sym_insert] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_table] = ACTIONS(1300), - [anon_sym_assert] = ACTIONS(1300), - [anon_sym_assert_equal] = ACTIONS(1300), - [anon_sym_download] = ACTIONS(1300), - [anon_sym_help] = ACTIONS(1300), - [anon_sym_length] = ACTIONS(1300), - [anon_sym_output] = ACTIONS(1300), - [anon_sym_output_error] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_append] = ACTIONS(1300), - [anon_sym_metadata] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [anon_sym_read] = ACTIONS(1300), - [anon_sym_workdir] = ACTIONS(1300), - [anon_sym_write] = ACTIONS(1300), - [anon_sym_from_json] = ACTIONS(1300), - [anon_sym_to_json] = ACTIONS(1300), - [anon_sym_to_string] = ACTIONS(1300), - [anon_sym_to_float] = ACTIONS(1300), - [anon_sym_bash] = ACTIONS(1300), - [anon_sym_fish] = ACTIONS(1300), - [anon_sym_raw] = ACTIONS(1300), - [anon_sym_sh] = ACTIONS(1300), - [anon_sym_zsh] = ACTIONS(1300), - [anon_sym_random] = ACTIONS(1300), - [anon_sym_random_boolean] = ACTIONS(1300), - [anon_sym_random_float] = ACTIONS(1300), - [anon_sym_random_integer] = ACTIONS(1300), - [anon_sym_columns] = ACTIONS(1300), - [anon_sym_rows] = ACTIONS(1300), - [anon_sym_reverse] = ACTIONS(1300), - }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [sym_integer] = ACTIONS(1246), - [sym_float] = ACTIONS(1244), - [sym_string] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_map] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_await] = ACTIONS(1246), - [anon_sym_COLON] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_EQ_GT] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_transform] = ACTIONS(1246), - [anon_sym_filter] = ACTIONS(1246), - [anon_sym_find] = ACTIONS(1246), - [anon_sym_remove] = ACTIONS(1246), - [anon_sym_reduce] = ACTIONS(1246), - [anon_sym_select] = ACTIONS(1246), - [anon_sym_insert] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_table] = ACTIONS(1246), - [anon_sym_assert] = ACTIONS(1246), - [anon_sym_assert_equal] = ACTIONS(1246), - [anon_sym_download] = ACTIONS(1246), - [anon_sym_help] = ACTIONS(1246), - [anon_sym_length] = ACTIONS(1246), - [anon_sym_output] = ACTIONS(1246), - [anon_sym_output_error] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_append] = ACTIONS(1246), - [anon_sym_metadata] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_read] = ACTIONS(1246), - [anon_sym_workdir] = ACTIONS(1246), - [anon_sym_write] = ACTIONS(1246), - [anon_sym_from_json] = ACTIONS(1246), - [anon_sym_to_json] = ACTIONS(1246), - [anon_sym_to_string] = ACTIONS(1246), - [anon_sym_to_float] = ACTIONS(1246), - [anon_sym_bash] = ACTIONS(1246), - [anon_sym_fish] = ACTIONS(1246), - [anon_sym_raw] = ACTIONS(1246), - [anon_sym_sh] = ACTIONS(1246), - [anon_sym_zsh] = ACTIONS(1246), - [anon_sym_random] = ACTIONS(1246), - [anon_sym_random_boolean] = ACTIONS(1246), - [anon_sym_random_float] = ACTIONS(1246), - [anon_sym_random_integer] = ACTIONS(1246), - [anon_sym_columns] = ACTIONS(1246), - [anon_sym_rows] = ACTIONS(1246), - [anon_sym_reverse] = ACTIONS(1246), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_RPAREN] = ACTIONS(1182), - [anon_sym_COMMA] = ACTIONS(1182), - [sym_integer] = ACTIONS(1184), - [sym_float] = ACTIONS(1182), - [sym_string] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_RBRACK] = ACTIONS(1182), - [anon_sym_map] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_COLON] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_BANG_EQ] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_EQ_GT] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_transform] = ACTIONS(1184), - [anon_sym_filter] = ACTIONS(1184), - [anon_sym_find] = ACTIONS(1184), - [anon_sym_remove] = ACTIONS(1184), - [anon_sym_reduce] = ACTIONS(1184), - [anon_sym_select] = ACTIONS(1184), - [anon_sym_insert] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_table] = ACTIONS(1184), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_assert_equal] = ACTIONS(1184), - [anon_sym_download] = ACTIONS(1184), - [anon_sym_help] = ACTIONS(1184), - [anon_sym_length] = ACTIONS(1184), - [anon_sym_output] = ACTIONS(1184), - [anon_sym_output_error] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_append] = ACTIONS(1184), - [anon_sym_metadata] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [anon_sym_read] = ACTIONS(1184), - [anon_sym_workdir] = ACTIONS(1184), - [anon_sym_write] = ACTIONS(1184), - [anon_sym_from_json] = ACTIONS(1184), - [anon_sym_to_json] = ACTIONS(1184), - [anon_sym_to_string] = ACTIONS(1184), - [anon_sym_to_float] = ACTIONS(1184), - [anon_sym_bash] = ACTIONS(1184), - [anon_sym_fish] = ACTIONS(1184), - [anon_sym_raw] = ACTIONS(1184), - [anon_sym_sh] = ACTIONS(1184), - [anon_sym_zsh] = ACTIONS(1184), - [anon_sym_random] = ACTIONS(1184), - [anon_sym_random_boolean] = ACTIONS(1184), - [anon_sym_random_float] = ACTIONS(1184), - [anon_sym_random_integer] = ACTIONS(1184), - [anon_sym_columns] = ACTIONS(1184), - [anon_sym_rows] = ACTIONS(1184), - [anon_sym_reverse] = ACTIONS(1184), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [sym_integer] = ACTIONS(1242), - [sym_float] = ACTIONS(1240), - [sym_string] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1240), - [anon_sym_map] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_COLON] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_transform] = ACTIONS(1242), - [anon_sym_filter] = ACTIONS(1242), - [anon_sym_find] = ACTIONS(1242), - [anon_sym_remove] = ACTIONS(1242), - [anon_sym_reduce] = ACTIONS(1242), - [anon_sym_select] = ACTIONS(1242), - [anon_sym_insert] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_table] = ACTIONS(1242), - [anon_sym_assert] = ACTIONS(1242), - [anon_sym_assert_equal] = ACTIONS(1242), - [anon_sym_download] = ACTIONS(1242), - [anon_sym_help] = ACTIONS(1242), - [anon_sym_length] = ACTIONS(1242), - [anon_sym_output] = ACTIONS(1242), - [anon_sym_output_error] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_append] = ACTIONS(1242), - [anon_sym_metadata] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_read] = ACTIONS(1242), - [anon_sym_workdir] = ACTIONS(1242), - [anon_sym_write] = ACTIONS(1242), - [anon_sym_from_json] = ACTIONS(1242), - [anon_sym_to_json] = ACTIONS(1242), - [anon_sym_to_string] = ACTIONS(1242), - [anon_sym_to_float] = ACTIONS(1242), - [anon_sym_bash] = ACTIONS(1242), - [anon_sym_fish] = ACTIONS(1242), - [anon_sym_raw] = ACTIONS(1242), - [anon_sym_sh] = ACTIONS(1242), - [anon_sym_zsh] = ACTIONS(1242), - [anon_sym_random] = ACTIONS(1242), - [anon_sym_random_boolean] = ACTIONS(1242), - [anon_sym_random_float] = ACTIONS(1242), - [anon_sym_random_integer] = ACTIONS(1242), - [anon_sym_columns] = ACTIONS(1242), - [anon_sym_rows] = ACTIONS(1242), - [anon_sym_reverse] = ACTIONS(1242), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_RPAREN] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [sym_integer] = ACTIONS(1238), - [sym_float] = ACTIONS(1236), - [sym_string] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1236), - [anon_sym_map] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_EQ_GT] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_transform] = ACTIONS(1238), - [anon_sym_filter] = ACTIONS(1238), - [anon_sym_find] = ACTIONS(1238), - [anon_sym_remove] = ACTIONS(1238), - [anon_sym_reduce] = ACTIONS(1238), - [anon_sym_select] = ACTIONS(1238), - [anon_sym_insert] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_table] = ACTIONS(1238), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_assert_equal] = ACTIONS(1238), - [anon_sym_download] = ACTIONS(1238), - [anon_sym_help] = ACTIONS(1238), - [anon_sym_length] = ACTIONS(1238), - [anon_sym_output] = ACTIONS(1238), - [anon_sym_output_error] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_append] = ACTIONS(1238), - [anon_sym_metadata] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_read] = ACTIONS(1238), - [anon_sym_workdir] = ACTIONS(1238), - [anon_sym_write] = ACTIONS(1238), - [anon_sym_from_json] = ACTIONS(1238), - [anon_sym_to_json] = ACTIONS(1238), - [anon_sym_to_string] = ACTIONS(1238), - [anon_sym_to_float] = ACTIONS(1238), - [anon_sym_bash] = ACTIONS(1238), - [anon_sym_fish] = ACTIONS(1238), - [anon_sym_raw] = ACTIONS(1238), - [anon_sym_sh] = ACTIONS(1238), - [anon_sym_zsh] = ACTIONS(1238), - [anon_sym_random] = ACTIONS(1238), - [anon_sym_random_boolean] = ACTIONS(1238), - [anon_sym_random_float] = ACTIONS(1238), - [anon_sym_random_integer] = ACTIONS(1238), - [anon_sym_columns] = ACTIONS(1238), - [anon_sym_rows] = ACTIONS(1238), - [anon_sym_reverse] = ACTIONS(1238), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1256), - [sym_integer] = ACTIONS(1258), - [sym_float] = ACTIONS(1256), - [sym_string] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_map] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_EQ_GT] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_transform] = ACTIONS(1258), - [anon_sym_filter] = ACTIONS(1258), - [anon_sym_find] = ACTIONS(1258), - [anon_sym_remove] = ACTIONS(1258), - [anon_sym_reduce] = ACTIONS(1258), - [anon_sym_select] = ACTIONS(1258), - [anon_sym_insert] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_table] = ACTIONS(1258), - [anon_sym_assert] = ACTIONS(1258), - [anon_sym_assert_equal] = ACTIONS(1258), - [anon_sym_download] = ACTIONS(1258), - [anon_sym_help] = ACTIONS(1258), - [anon_sym_length] = ACTIONS(1258), - [anon_sym_output] = ACTIONS(1258), - [anon_sym_output_error] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_append] = ACTIONS(1258), - [anon_sym_metadata] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1258), - [anon_sym_read] = ACTIONS(1258), - [anon_sym_workdir] = ACTIONS(1258), - [anon_sym_write] = ACTIONS(1258), - [anon_sym_from_json] = ACTIONS(1258), - [anon_sym_to_json] = ACTIONS(1258), - [anon_sym_to_string] = ACTIONS(1258), - [anon_sym_to_float] = ACTIONS(1258), - [anon_sym_bash] = ACTIONS(1258), - [anon_sym_fish] = ACTIONS(1258), - [anon_sym_raw] = ACTIONS(1258), - [anon_sym_sh] = ACTIONS(1258), - [anon_sym_zsh] = ACTIONS(1258), - [anon_sym_random] = ACTIONS(1258), - [anon_sym_random_boolean] = ACTIONS(1258), - [anon_sym_random_float] = ACTIONS(1258), - [anon_sym_random_integer] = ACTIONS(1258), - [anon_sym_columns] = ACTIONS(1258), - [anon_sym_rows] = ACTIONS(1258), - [anon_sym_reverse] = ACTIONS(1258), - }, - [383] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [384] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [385] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [386] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_RPAREN] = ACTIONS(1144), - [sym_integer] = ACTIONS(1146), - [sym_float] = ACTIONS(1144), - [sym_string] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_map] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_await] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1144), - [anon_sym_BANG_EQ] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT_EQ] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_transform] = ACTIONS(1146), - [anon_sym_filter] = ACTIONS(1146), - [anon_sym_find] = ACTIONS(1146), - [anon_sym_remove] = ACTIONS(1146), - [anon_sym_reduce] = ACTIONS(1146), - [anon_sym_select] = ACTIONS(1146), - [anon_sym_insert] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_table] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1146), - [anon_sym_assert_equal] = ACTIONS(1146), - [anon_sym_download] = ACTIONS(1146), - [anon_sym_help] = ACTIONS(1146), - [anon_sym_length] = ACTIONS(1146), - [anon_sym_output] = ACTIONS(1146), - [anon_sym_output_error] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_append] = ACTIONS(1146), - [anon_sym_metadata] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [anon_sym_read] = ACTIONS(1146), - [anon_sym_workdir] = ACTIONS(1146), - [anon_sym_write] = ACTIONS(1146), - [anon_sym_from_json] = ACTIONS(1146), - [anon_sym_to_json] = ACTIONS(1146), - [anon_sym_to_string] = ACTIONS(1146), - [anon_sym_to_float] = ACTIONS(1146), - [anon_sym_bash] = ACTIONS(1146), - [anon_sym_fish] = ACTIONS(1146), - [anon_sym_raw] = ACTIONS(1146), - [anon_sym_sh] = ACTIONS(1146), - [anon_sym_zsh] = ACTIONS(1146), - [anon_sym_random] = ACTIONS(1146), - [anon_sym_random_boolean] = ACTIONS(1146), - [anon_sym_random_float] = ACTIONS(1146), - [anon_sym_random_integer] = ACTIONS(1146), - [anon_sym_columns] = ACTIONS(1146), - [anon_sym_rows] = ACTIONS(1146), - [anon_sym_reverse] = ACTIONS(1146), - }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [sym_integer] = ACTIONS(1262), - [sym_float] = ACTIONS(1260), - [sym_string] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_map] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_EQ_GT] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_transform] = ACTIONS(1262), - [anon_sym_filter] = ACTIONS(1262), - [anon_sym_find] = ACTIONS(1262), - [anon_sym_remove] = ACTIONS(1262), - [anon_sym_reduce] = ACTIONS(1262), - [anon_sym_select] = ACTIONS(1262), - [anon_sym_insert] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_table] = ACTIONS(1262), - [anon_sym_assert] = ACTIONS(1262), - [anon_sym_assert_equal] = ACTIONS(1262), - [anon_sym_download] = ACTIONS(1262), - [anon_sym_help] = ACTIONS(1262), - [anon_sym_length] = ACTIONS(1262), - [anon_sym_output] = ACTIONS(1262), - [anon_sym_output_error] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_append] = ACTIONS(1262), - [anon_sym_metadata] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1262), - [anon_sym_read] = ACTIONS(1262), - [anon_sym_workdir] = ACTIONS(1262), - [anon_sym_write] = ACTIONS(1262), - [anon_sym_from_json] = ACTIONS(1262), - [anon_sym_to_json] = ACTIONS(1262), - [anon_sym_to_string] = ACTIONS(1262), - [anon_sym_to_float] = ACTIONS(1262), - [anon_sym_bash] = ACTIONS(1262), - [anon_sym_fish] = ACTIONS(1262), - [anon_sym_raw] = ACTIONS(1262), - [anon_sym_sh] = ACTIONS(1262), - [anon_sym_zsh] = ACTIONS(1262), - [anon_sym_random] = ACTIONS(1262), - [anon_sym_random_boolean] = ACTIONS(1262), - [anon_sym_random_float] = ACTIONS(1262), - [anon_sym_random_integer] = ACTIONS(1262), - [anon_sym_columns] = ACTIONS(1262), - [anon_sym_rows] = ACTIONS(1262), - [anon_sym_reverse] = ACTIONS(1262), - }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_RPAREN] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [sym_integer] = ACTIONS(1208), - [sym_float] = ACTIONS(1206), - [sym_string] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACK] = ACTIONS(1206), - [anon_sym_map] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_await] = ACTIONS(1208), - [anon_sym_COLON] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_SLASH] = ACTIONS(1206), - [anon_sym_PERCENT] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_EQ_GT] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_transform] = ACTIONS(1208), - [anon_sym_filter] = ACTIONS(1208), - [anon_sym_find] = ACTIONS(1208), - [anon_sym_remove] = ACTIONS(1208), - [anon_sym_reduce] = ACTIONS(1208), - [anon_sym_select] = ACTIONS(1208), - [anon_sym_insert] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_table] = ACTIONS(1208), - [anon_sym_assert] = ACTIONS(1208), - [anon_sym_assert_equal] = ACTIONS(1208), - [anon_sym_download] = ACTIONS(1208), - [anon_sym_help] = ACTIONS(1208), - [anon_sym_length] = ACTIONS(1208), - [anon_sym_output] = ACTIONS(1208), - [anon_sym_output_error] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_append] = ACTIONS(1208), - [anon_sym_metadata] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_read] = ACTIONS(1208), - [anon_sym_workdir] = ACTIONS(1208), - [anon_sym_write] = ACTIONS(1208), - [anon_sym_from_json] = ACTIONS(1208), - [anon_sym_to_json] = ACTIONS(1208), - [anon_sym_to_string] = ACTIONS(1208), - [anon_sym_to_float] = ACTIONS(1208), - [anon_sym_bash] = ACTIONS(1208), - [anon_sym_fish] = ACTIONS(1208), - [anon_sym_raw] = ACTIONS(1208), - [anon_sym_sh] = ACTIONS(1208), - [anon_sym_zsh] = ACTIONS(1208), - [anon_sym_random] = ACTIONS(1208), - [anon_sym_random_boolean] = ACTIONS(1208), - [anon_sym_random_float] = ACTIONS(1208), - [anon_sym_random_integer] = ACTIONS(1208), - [anon_sym_columns] = ACTIONS(1208), - [anon_sym_rows] = ACTIONS(1208), - [anon_sym_reverse] = ACTIONS(1208), - }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [sym_integer] = ACTIONS(1266), - [sym_float] = ACTIONS(1264), - [sym_string] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_map] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_EQ_GT] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_transform] = ACTIONS(1266), - [anon_sym_filter] = ACTIONS(1266), - [anon_sym_find] = ACTIONS(1266), - [anon_sym_remove] = ACTIONS(1266), - [anon_sym_reduce] = ACTIONS(1266), - [anon_sym_select] = ACTIONS(1266), - [anon_sym_insert] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_table] = ACTIONS(1266), - [anon_sym_assert] = ACTIONS(1266), - [anon_sym_assert_equal] = ACTIONS(1266), - [anon_sym_download] = ACTIONS(1266), - [anon_sym_help] = ACTIONS(1266), - [anon_sym_length] = ACTIONS(1266), - [anon_sym_output] = ACTIONS(1266), - [anon_sym_output_error] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_append] = ACTIONS(1266), - [anon_sym_metadata] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1266), - [anon_sym_read] = ACTIONS(1266), - [anon_sym_workdir] = ACTIONS(1266), - [anon_sym_write] = ACTIONS(1266), - [anon_sym_from_json] = ACTIONS(1266), - [anon_sym_to_json] = ACTIONS(1266), - [anon_sym_to_string] = ACTIONS(1266), - [anon_sym_to_float] = ACTIONS(1266), - [anon_sym_bash] = ACTIONS(1266), - [anon_sym_fish] = ACTIONS(1266), - [anon_sym_raw] = ACTIONS(1266), - [anon_sym_sh] = ACTIONS(1266), - [anon_sym_zsh] = ACTIONS(1266), - [anon_sym_random] = ACTIONS(1266), - [anon_sym_random_boolean] = ACTIONS(1266), - [anon_sym_random_float] = ACTIONS(1266), - [anon_sym_random_integer] = ACTIONS(1266), - [anon_sym_columns] = ACTIONS(1266), - [anon_sym_rows] = ACTIONS(1266), - [anon_sym_reverse] = ACTIONS(1266), - }, - [390] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [391] = { - [sym_expression] = STATE(745), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [392] = { - [sym_expression] = STATE(759), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [393] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(165), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [sym_integer] = ACTIONS(1231), - [sym_float] = ACTIONS(1229), - [sym_string] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_map] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_EQ_GT] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_transform] = ACTIONS(1231), - [anon_sym_filter] = ACTIONS(1231), - [anon_sym_find] = ACTIONS(1231), - [anon_sym_remove] = ACTIONS(1231), - [anon_sym_reduce] = ACTIONS(1231), - [anon_sym_select] = ACTIONS(1231), - [anon_sym_insert] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1231), - [anon_sym_assert_equal] = ACTIONS(1231), - [anon_sym_download] = ACTIONS(1231), - [anon_sym_help] = ACTIONS(1231), - [anon_sym_length] = ACTIONS(1231), - [anon_sym_output] = ACTIONS(1231), - [anon_sym_output_error] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_append] = ACTIONS(1231), - [anon_sym_metadata] = ACTIONS(1231), - [anon_sym_move] = ACTIONS(1231), - [anon_sym_read] = ACTIONS(1231), - [anon_sym_workdir] = ACTIONS(1231), - [anon_sym_write] = ACTIONS(1231), - [anon_sym_from_json] = ACTIONS(1231), - [anon_sym_to_json] = ACTIONS(1231), - [anon_sym_to_string] = ACTIONS(1231), - [anon_sym_to_float] = ACTIONS(1231), - [anon_sym_bash] = ACTIONS(1231), - [anon_sym_fish] = ACTIONS(1231), - [anon_sym_raw] = ACTIONS(1231), - [anon_sym_sh] = ACTIONS(1231), - [anon_sym_zsh] = ACTIONS(1231), - [anon_sym_random] = ACTIONS(1231), - [anon_sym_random_boolean] = ACTIONS(1231), - [anon_sym_random_float] = ACTIONS(1231), - [anon_sym_random_integer] = ACTIONS(1231), - [anon_sym_columns] = ACTIONS(1231), - [anon_sym_rows] = ACTIONS(1231), - [anon_sym_reverse] = ACTIONS(1231), - }, - [395] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1115), - [anon_sym_PERCENT] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1115), - [anon_sym_PIPE_PIPE] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [397] = { - [sym_expression] = STATE(752), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [398] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [399] = { - [sym_math_operator] = STATE(603), - [sym_logic_operator] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [sym_integer] = ACTIONS(1270), - [sym_float] = ACTIONS(1268), - [sym_string] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_map] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_transform] = ACTIONS(1270), - [anon_sym_filter] = ACTIONS(1270), - [anon_sym_find] = ACTIONS(1270), - [anon_sym_remove] = ACTIONS(1270), - [anon_sym_reduce] = ACTIONS(1270), - [anon_sym_select] = ACTIONS(1270), - [anon_sym_insert] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_table] = ACTIONS(1270), - [anon_sym_assert] = ACTIONS(1270), - [anon_sym_assert_equal] = ACTIONS(1270), - [anon_sym_download] = ACTIONS(1270), - [anon_sym_help] = ACTIONS(1270), - [anon_sym_length] = ACTIONS(1270), - [anon_sym_output] = ACTIONS(1270), - [anon_sym_output_error] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_append] = ACTIONS(1270), - [anon_sym_metadata] = ACTIONS(1270), - [anon_sym_move] = ACTIONS(1270), - [anon_sym_read] = ACTIONS(1270), - [anon_sym_workdir] = ACTIONS(1270), - [anon_sym_write] = ACTIONS(1270), - [anon_sym_from_json] = ACTIONS(1270), - [anon_sym_to_json] = ACTIONS(1270), - [anon_sym_to_string] = ACTIONS(1270), - [anon_sym_to_float] = ACTIONS(1270), - [anon_sym_bash] = ACTIONS(1270), - [anon_sym_fish] = ACTIONS(1270), - [anon_sym_raw] = ACTIONS(1270), - [anon_sym_sh] = ACTIONS(1270), - [anon_sym_zsh] = ACTIONS(1270), - [anon_sym_random] = ACTIONS(1270), - [anon_sym_random_boolean] = ACTIONS(1270), - [anon_sym_random_float] = ACTIONS(1270), - [anon_sym_random_integer] = ACTIONS(1270), - [anon_sym_columns] = ACTIONS(1270), - [anon_sym_rows] = ACTIONS(1270), - [anon_sym_reverse] = ACTIONS(1270), - }, - [401] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [sym_integer] = ACTIONS(1306), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_map] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_EQ_GT] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_transform] = ACTIONS(1306), - [anon_sym_filter] = ACTIONS(1306), - [anon_sym_find] = ACTIONS(1306), - [anon_sym_remove] = ACTIONS(1306), - [anon_sym_reduce] = ACTIONS(1306), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_table] = ACTIONS(1306), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_assert_equal] = ACTIONS(1306), - [anon_sym_download] = ACTIONS(1306), - [anon_sym_help] = ACTIONS(1306), - [anon_sym_length] = ACTIONS(1306), - [anon_sym_output] = ACTIONS(1306), - [anon_sym_output_error] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_append] = ACTIONS(1306), - [anon_sym_metadata] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1306), - [anon_sym_read] = ACTIONS(1306), - [anon_sym_workdir] = ACTIONS(1306), - [anon_sym_write] = ACTIONS(1306), - [anon_sym_from_json] = ACTIONS(1306), - [anon_sym_to_json] = ACTIONS(1306), - [anon_sym_to_string] = ACTIONS(1306), - [anon_sym_to_float] = ACTIONS(1306), - [anon_sym_bash] = ACTIONS(1306), - [anon_sym_fish] = ACTIONS(1306), - [anon_sym_raw] = ACTIONS(1306), - [anon_sym_sh] = ACTIONS(1306), - [anon_sym_zsh] = ACTIONS(1306), - [anon_sym_random] = ACTIONS(1306), - [anon_sym_random_boolean] = ACTIONS(1306), - [anon_sym_random_float] = ACTIONS(1306), - [anon_sym_random_integer] = ACTIONS(1306), - [anon_sym_columns] = ACTIONS(1306), - [anon_sym_rows] = ACTIONS(1306), - [anon_sym_reverse] = ACTIONS(1306), - }, - [402] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [sym_integer] = ACTIONS(1250), - [sym_float] = ACTIONS(1248), - [sym_string] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_map] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_EQ_GT] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_transform] = ACTIONS(1250), - [anon_sym_filter] = ACTIONS(1250), - [anon_sym_find] = ACTIONS(1250), - [anon_sym_remove] = ACTIONS(1250), - [anon_sym_reduce] = ACTIONS(1250), - [anon_sym_select] = ACTIONS(1250), - [anon_sym_insert] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_table] = ACTIONS(1250), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_assert_equal] = ACTIONS(1250), - [anon_sym_download] = ACTIONS(1250), - [anon_sym_help] = ACTIONS(1250), - [anon_sym_length] = ACTIONS(1250), - [anon_sym_output] = ACTIONS(1250), - [anon_sym_output_error] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_append] = ACTIONS(1250), - [anon_sym_metadata] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [anon_sym_read] = ACTIONS(1250), - [anon_sym_workdir] = ACTIONS(1250), - [anon_sym_write] = ACTIONS(1250), - [anon_sym_from_json] = ACTIONS(1250), - [anon_sym_to_json] = ACTIONS(1250), - [anon_sym_to_string] = ACTIONS(1250), - [anon_sym_to_float] = ACTIONS(1250), - [anon_sym_bash] = ACTIONS(1250), - [anon_sym_fish] = ACTIONS(1250), - [anon_sym_raw] = ACTIONS(1250), - [anon_sym_sh] = ACTIONS(1250), - [anon_sym_zsh] = ACTIONS(1250), - [anon_sym_random] = ACTIONS(1250), - [anon_sym_random_boolean] = ACTIONS(1250), - [anon_sym_random_float] = ACTIONS(1250), - [anon_sym_random_integer] = ACTIONS(1250), - [anon_sym_columns] = ACTIONS(1250), - [anon_sym_rows] = ACTIONS(1250), - [anon_sym_reverse] = ACTIONS(1250), - }, - [403] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [sym_string] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_map] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_EQ_GT] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_transform] = ACTIONS(1107), - [anon_sym_filter] = ACTIONS(1107), - [anon_sym_find] = ACTIONS(1107), - [anon_sym_remove] = ACTIONS(1107), - [anon_sym_reduce] = ACTIONS(1107), - [anon_sym_select] = ACTIONS(1107), - [anon_sym_insert] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_table] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_assert_equal] = ACTIONS(1107), - [anon_sym_download] = ACTIONS(1107), - [anon_sym_help] = ACTIONS(1107), - [anon_sym_length] = ACTIONS(1107), - [anon_sym_output] = ACTIONS(1107), - [anon_sym_output_error] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_append] = ACTIONS(1107), - [anon_sym_metadata] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [anon_sym_read] = ACTIONS(1107), - [anon_sym_workdir] = ACTIONS(1107), - [anon_sym_write] = ACTIONS(1107), - [anon_sym_from_json] = ACTIONS(1107), - [anon_sym_to_json] = ACTIONS(1107), - [anon_sym_to_string] = ACTIONS(1107), - [anon_sym_to_float] = ACTIONS(1107), - [anon_sym_bash] = ACTIONS(1107), - [anon_sym_fish] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1107), - [anon_sym_sh] = ACTIONS(1107), - [anon_sym_zsh] = ACTIONS(1107), - [anon_sym_random] = ACTIONS(1107), - [anon_sym_random_boolean] = ACTIONS(1107), - [anon_sym_random_float] = ACTIONS(1107), - [anon_sym_random_integer] = ACTIONS(1107), - [anon_sym_columns] = ACTIONS(1107), - [anon_sym_rows] = ACTIONS(1107), - [anon_sym_reverse] = ACTIONS(1107), - }, - [404] = { - [sym_expression] = STATE(741), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [405] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [sym_integer] = ACTIONS(1274), - [sym_float] = ACTIONS(1272), - [sym_string] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_map] = ACTIONS(1274), - [anon_sym_async] = ACTIONS(1274), - [anon_sym_await] = ACTIONS(1274), - [anon_sym_COLON] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_EQ_GT] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_transform] = ACTIONS(1274), - [anon_sym_filter] = ACTIONS(1274), - [anon_sym_find] = ACTIONS(1274), - [anon_sym_remove] = ACTIONS(1274), - [anon_sym_reduce] = ACTIONS(1274), - [anon_sym_select] = ACTIONS(1274), - [anon_sym_insert] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_table] = ACTIONS(1274), - [anon_sym_assert] = ACTIONS(1274), - [anon_sym_assert_equal] = ACTIONS(1274), - [anon_sym_download] = ACTIONS(1274), - [anon_sym_help] = ACTIONS(1274), - [anon_sym_length] = ACTIONS(1274), - [anon_sym_output] = ACTIONS(1274), - [anon_sym_output_error] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1274), - [anon_sym_append] = ACTIONS(1274), - [anon_sym_metadata] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1274), - [anon_sym_read] = ACTIONS(1274), - [anon_sym_workdir] = ACTIONS(1274), - [anon_sym_write] = ACTIONS(1274), - [anon_sym_from_json] = ACTIONS(1274), - [anon_sym_to_json] = ACTIONS(1274), - [anon_sym_to_string] = ACTIONS(1274), - [anon_sym_to_float] = ACTIONS(1274), - [anon_sym_bash] = ACTIONS(1274), - [anon_sym_fish] = ACTIONS(1274), - [anon_sym_raw] = ACTIONS(1274), - [anon_sym_sh] = ACTIONS(1274), - [anon_sym_zsh] = ACTIONS(1274), - [anon_sym_random] = ACTIONS(1274), - [anon_sym_random_boolean] = ACTIONS(1274), - [anon_sym_random_float] = ACTIONS(1274), - [anon_sym_random_integer] = ACTIONS(1274), - [anon_sym_columns] = ACTIONS(1274), - [anon_sym_rows] = ACTIONS(1274), - [anon_sym_reverse] = ACTIONS(1274), - }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [sym_integer] = ACTIONS(1286), - [sym_float] = ACTIONS(1284), - [sym_string] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_map] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1286), - [anon_sym_await] = ACTIONS(1286), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_transform] = ACTIONS(1286), - [anon_sym_filter] = ACTIONS(1286), - [anon_sym_find] = ACTIONS(1286), - [anon_sym_remove] = ACTIONS(1286), - [anon_sym_reduce] = ACTIONS(1286), - [anon_sym_select] = ACTIONS(1286), - [anon_sym_insert] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_table] = ACTIONS(1286), - [anon_sym_assert] = ACTIONS(1286), - [anon_sym_assert_equal] = ACTIONS(1286), - [anon_sym_download] = ACTIONS(1286), - [anon_sym_help] = ACTIONS(1286), - [anon_sym_length] = ACTIONS(1286), - [anon_sym_output] = ACTIONS(1286), - [anon_sym_output_error] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_append] = ACTIONS(1286), - [anon_sym_metadata] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1286), - [anon_sym_read] = ACTIONS(1286), - [anon_sym_workdir] = ACTIONS(1286), - [anon_sym_write] = ACTIONS(1286), - [anon_sym_from_json] = ACTIONS(1286), - [anon_sym_to_json] = ACTIONS(1286), - [anon_sym_to_string] = ACTIONS(1286), - [anon_sym_to_float] = ACTIONS(1286), - [anon_sym_bash] = ACTIONS(1286), - [anon_sym_fish] = ACTIONS(1286), - [anon_sym_raw] = ACTIONS(1286), - [anon_sym_sh] = ACTIONS(1286), - [anon_sym_zsh] = ACTIONS(1286), - [anon_sym_random] = ACTIONS(1286), - [anon_sym_random_boolean] = ACTIONS(1286), - [anon_sym_random_float] = ACTIONS(1286), - [anon_sym_random_integer] = ACTIONS(1286), - [anon_sym_columns] = ACTIONS(1286), - [anon_sym_rows] = ACTIONS(1286), - [anon_sym_reverse] = ACTIONS(1286), - }, - [407] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1296), - [sym_float] = ACTIONS(1294), - [sym_string] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_map] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_EQ_GT] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1296), - [anon_sym_find] = ACTIONS(1296), - [anon_sym_remove] = ACTIONS(1296), - [anon_sym_reduce] = ACTIONS(1296), - [anon_sym_select] = ACTIONS(1296), - [anon_sym_insert] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_table] = ACTIONS(1296), - [anon_sym_assert] = ACTIONS(1296), - [anon_sym_assert_equal] = ACTIONS(1296), - [anon_sym_download] = ACTIONS(1296), - [anon_sym_help] = ACTIONS(1296), - [anon_sym_length] = ACTIONS(1296), - [anon_sym_output] = ACTIONS(1296), - [anon_sym_output_error] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_append] = ACTIONS(1296), - [anon_sym_metadata] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [anon_sym_read] = ACTIONS(1296), - [anon_sym_workdir] = ACTIONS(1296), - [anon_sym_write] = ACTIONS(1296), - [anon_sym_from_json] = ACTIONS(1296), - [anon_sym_to_json] = ACTIONS(1296), - [anon_sym_to_string] = ACTIONS(1296), - [anon_sym_to_float] = ACTIONS(1296), - [anon_sym_bash] = ACTIONS(1296), - [anon_sym_fish] = ACTIONS(1296), - [anon_sym_raw] = ACTIONS(1296), - [anon_sym_sh] = ACTIONS(1296), - [anon_sym_zsh] = ACTIONS(1296), - [anon_sym_random] = ACTIONS(1296), - [anon_sym_random_boolean] = ACTIONS(1296), - [anon_sym_random_float] = ACTIONS(1296), - [anon_sym_random_integer] = ACTIONS(1296), - [anon_sym_columns] = ACTIONS(1296), - [anon_sym_rows] = ACTIONS(1296), - [anon_sym_reverse] = ACTIONS(1296), - }, - [408] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [sym_integer] = ACTIONS(1282), - [sym_float] = ACTIONS(1280), - [sym_string] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_map] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_transform] = ACTIONS(1282), - [anon_sym_filter] = ACTIONS(1282), - [anon_sym_find] = ACTIONS(1282), - [anon_sym_remove] = ACTIONS(1282), - [anon_sym_reduce] = ACTIONS(1282), - [anon_sym_select] = ACTIONS(1282), - [anon_sym_insert] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_table] = ACTIONS(1282), - [anon_sym_assert] = ACTIONS(1282), - [anon_sym_assert_equal] = ACTIONS(1282), - [anon_sym_download] = ACTIONS(1282), - [anon_sym_help] = ACTIONS(1282), - [anon_sym_length] = ACTIONS(1282), - [anon_sym_output] = ACTIONS(1282), - [anon_sym_output_error] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_append] = ACTIONS(1282), - [anon_sym_metadata] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1282), - [anon_sym_read] = ACTIONS(1282), - [anon_sym_workdir] = ACTIONS(1282), - [anon_sym_write] = ACTIONS(1282), - [anon_sym_from_json] = ACTIONS(1282), - [anon_sym_to_json] = ACTIONS(1282), - [anon_sym_to_string] = ACTIONS(1282), - [anon_sym_to_float] = ACTIONS(1282), - [anon_sym_bash] = ACTIONS(1282), - [anon_sym_fish] = ACTIONS(1282), - [anon_sym_raw] = ACTIONS(1282), - [anon_sym_sh] = ACTIONS(1282), - [anon_sym_zsh] = ACTIONS(1282), - [anon_sym_random] = ACTIONS(1282), - [anon_sym_random_boolean] = ACTIONS(1282), - [anon_sym_random_float] = ACTIONS(1282), - [anon_sym_random_integer] = ACTIONS(1282), - [anon_sym_columns] = ACTIONS(1282), - [anon_sym_rows] = ACTIONS(1282), - [anon_sym_reverse] = ACTIONS(1282), - }, - [409] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [sym_integer] = ACTIONS(1290), - [sym_float] = ACTIONS(1288), - [sym_string] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_map] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_transform] = ACTIONS(1290), - [anon_sym_filter] = ACTIONS(1290), - [anon_sym_find] = ACTIONS(1290), - [anon_sym_remove] = ACTIONS(1290), - [anon_sym_reduce] = ACTIONS(1290), - [anon_sym_select] = ACTIONS(1290), - [anon_sym_insert] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_table] = ACTIONS(1290), - [anon_sym_assert] = ACTIONS(1290), - [anon_sym_assert_equal] = ACTIONS(1290), - [anon_sym_download] = ACTIONS(1290), - [anon_sym_help] = ACTIONS(1290), - [anon_sym_length] = ACTIONS(1290), - [anon_sym_output] = ACTIONS(1290), - [anon_sym_output_error] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_append] = ACTIONS(1290), - [anon_sym_metadata] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1290), - [anon_sym_read] = ACTIONS(1290), - [anon_sym_workdir] = ACTIONS(1290), - [anon_sym_write] = ACTIONS(1290), - [anon_sym_from_json] = ACTIONS(1290), - [anon_sym_to_json] = ACTIONS(1290), - [anon_sym_to_string] = ACTIONS(1290), - [anon_sym_to_float] = ACTIONS(1290), - [anon_sym_bash] = ACTIONS(1290), - [anon_sym_fish] = ACTIONS(1290), - [anon_sym_raw] = ACTIONS(1290), - [anon_sym_sh] = ACTIONS(1290), - [anon_sym_zsh] = ACTIONS(1290), - [anon_sym_random] = ACTIONS(1290), - [anon_sym_random_boolean] = ACTIONS(1290), - [anon_sym_random_float] = ACTIONS(1290), - [anon_sym_random_integer] = ACTIONS(1290), - [anon_sym_columns] = ACTIONS(1290), - [anon_sym_rows] = ACTIONS(1290), - [anon_sym_reverse] = ACTIONS(1290), - }, - [410] = { - [sym_expression] = STATE(740), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [411] = { - [sym_expression] = STATE(738), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [412] = { - [sym_expression] = STATE(751), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_math_operator] = STATE(668), - [sym_logic] = STATE(727), - [sym_logic_operator] = STATE(665), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [413] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [414] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [415] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN] = ACTIONS(1129), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1129), - [sym_string] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_map] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1131), - [anon_sym_COLON] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_EQ_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1129), - [anon_sym_PIPE_PIPE] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1129), - [anon_sym_LT_EQ] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_EQ_GT] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_transform] = ACTIONS(1131), - [anon_sym_filter] = ACTIONS(1131), - [anon_sym_find] = ACTIONS(1131), - [anon_sym_remove] = ACTIONS(1131), - [anon_sym_reduce] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1131), - [anon_sym_insert] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_table] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1131), - [anon_sym_assert_equal] = ACTIONS(1131), - [anon_sym_download] = ACTIONS(1131), - [anon_sym_help] = ACTIONS(1131), - [anon_sym_length] = ACTIONS(1131), - [anon_sym_output] = ACTIONS(1131), - [anon_sym_output_error] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_append] = ACTIONS(1131), - [anon_sym_metadata] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [anon_sym_read] = ACTIONS(1131), - [anon_sym_workdir] = ACTIONS(1131), - [anon_sym_write] = ACTIONS(1131), - [anon_sym_from_json] = ACTIONS(1131), - [anon_sym_to_json] = ACTIONS(1131), - [anon_sym_to_string] = ACTIONS(1131), - [anon_sym_to_float] = ACTIONS(1131), - [anon_sym_bash] = ACTIONS(1131), - [anon_sym_fish] = ACTIONS(1131), - [anon_sym_raw] = ACTIONS(1131), - [anon_sym_sh] = ACTIONS(1131), - [anon_sym_zsh] = ACTIONS(1131), - [anon_sym_random] = ACTIONS(1131), - [anon_sym_random_boolean] = ACTIONS(1131), - [anon_sym_random_float] = ACTIONS(1131), - [anon_sym_random_integer] = ACTIONS(1131), - [anon_sym_columns] = ACTIONS(1131), - [anon_sym_rows] = ACTIONS(1131), - [anon_sym_reverse] = ACTIONS(1131), - }, - [416] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [417] = { - [sym_math_operator] = STATE(522), - [sym_logic_operator] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_elseif] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [418] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [419] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [420] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1121), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [sym_string] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_map] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_await] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_EQ_GT] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1123), - [anon_sym_find] = ACTIONS(1123), - [anon_sym_remove] = ACTIONS(1123), - [anon_sym_reduce] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1123), - [anon_sym_insert] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_table] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_assert_equal] = ACTIONS(1123), - [anon_sym_download] = ACTIONS(1123), - [anon_sym_help] = ACTIONS(1123), - [anon_sym_length] = ACTIONS(1123), - [anon_sym_output] = ACTIONS(1123), - [anon_sym_output_error] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_append] = ACTIONS(1123), - [anon_sym_metadata] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [anon_sym_read] = ACTIONS(1123), - [anon_sym_workdir] = ACTIONS(1123), - [anon_sym_write] = ACTIONS(1123), - [anon_sym_from_json] = ACTIONS(1123), - [anon_sym_to_json] = ACTIONS(1123), - [anon_sym_to_string] = ACTIONS(1123), - [anon_sym_to_float] = ACTIONS(1123), - [anon_sym_bash] = ACTIONS(1123), - [anon_sym_fish] = ACTIONS(1123), - [anon_sym_raw] = ACTIONS(1123), - [anon_sym_sh] = ACTIONS(1123), - [anon_sym_zsh] = ACTIONS(1123), - [anon_sym_random] = ACTIONS(1123), - [anon_sym_random_boolean] = ACTIONS(1123), - [anon_sym_random_float] = ACTIONS(1123), - [anon_sym_random_integer] = ACTIONS(1123), - [anon_sym_columns] = ACTIONS(1123), - [anon_sym_rows] = ACTIONS(1123), - [anon_sym_reverse] = ACTIONS(1123), - }, - [421] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_RPAREN] = ACTIONS(1125), - [sym_integer] = ACTIONS(1127), - [sym_float] = ACTIONS(1125), - [sym_string] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_map] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_await] = ACTIONS(1127), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_transform] = ACTIONS(1127), - [anon_sym_filter] = ACTIONS(1127), - [anon_sym_find] = ACTIONS(1127), - [anon_sym_remove] = ACTIONS(1127), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_insert] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_table] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1127), - [anon_sym_assert_equal] = ACTIONS(1127), - [anon_sym_download] = ACTIONS(1127), - [anon_sym_help] = ACTIONS(1127), - [anon_sym_length] = ACTIONS(1127), - [anon_sym_output] = ACTIONS(1127), - [anon_sym_output_error] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_append] = ACTIONS(1127), - [anon_sym_metadata] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [anon_sym_read] = ACTIONS(1127), - [anon_sym_workdir] = ACTIONS(1127), - [anon_sym_write] = ACTIONS(1127), - [anon_sym_from_json] = ACTIONS(1127), - [anon_sym_to_json] = ACTIONS(1127), - [anon_sym_to_string] = ACTIONS(1127), - [anon_sym_to_float] = ACTIONS(1127), - [anon_sym_bash] = ACTIONS(1127), - [anon_sym_fish] = ACTIONS(1127), - [anon_sym_raw] = ACTIONS(1127), - [anon_sym_sh] = ACTIONS(1127), - [anon_sym_zsh] = ACTIONS(1127), - [anon_sym_random] = ACTIONS(1127), - [anon_sym_random_boolean] = ACTIONS(1127), - [anon_sym_random_float] = ACTIONS(1127), - [anon_sym_random_integer] = ACTIONS(1127), - [anon_sym_columns] = ACTIONS(1127), - [anon_sym_rows] = ACTIONS(1127), - [anon_sym_reverse] = ACTIONS(1127), - }, - [422] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(822), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [423] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [424] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [425] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [sym_integer] = ACTIONS(1142), - [sym_float] = ACTIONS(1140), - [sym_string] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_map] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_transform] = ACTIONS(1142), - [anon_sym_filter] = ACTIONS(1142), - [anon_sym_find] = ACTIONS(1142), - [anon_sym_remove] = ACTIONS(1142), - [anon_sym_reduce] = ACTIONS(1142), - [anon_sym_select] = ACTIONS(1142), - [anon_sym_insert] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_table] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [426] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, - [427] = { - [sym_expression] = STATE(738), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(885), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(891), - [sym_string] = ACTIONS(891), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_map] = ACTIONS(900), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_transform] = ACTIONS(906), - [anon_sym_filter] = ACTIONS(906), - [anon_sym_find] = ACTIONS(906), - [anon_sym_remove] = ACTIONS(906), - [anon_sym_reduce] = ACTIONS(906), - [anon_sym_select] = ACTIONS(906), - [anon_sym_insert] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_table] = ACTIONS(914), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_assert_equal] = ACTIONS(917), - [anon_sym_download] = ACTIONS(917), - [anon_sym_help] = ACTIONS(917), - [anon_sym_length] = ACTIONS(917), - [anon_sym_output] = ACTIONS(917), - [anon_sym_output_error] = ACTIONS(917), - [anon_sym_type] = ACTIONS(917), - [anon_sym_append] = ACTIONS(917), - [anon_sym_metadata] = ACTIONS(917), - [anon_sym_move] = ACTIONS(917), - [anon_sym_read] = ACTIONS(917), - [anon_sym_workdir] = ACTIONS(917), - [anon_sym_write] = ACTIONS(917), - [anon_sym_from_json] = ACTIONS(917), - [anon_sym_to_json] = ACTIONS(917), - [anon_sym_to_string] = ACTIONS(917), - [anon_sym_to_float] = ACTIONS(917), - [anon_sym_bash] = ACTIONS(917), - [anon_sym_fish] = ACTIONS(917), - [anon_sym_raw] = ACTIONS(917), - [anon_sym_sh] = ACTIONS(917), - [anon_sym_zsh] = ACTIONS(917), - [anon_sym_random] = ACTIONS(917), - [anon_sym_random_boolean] = ACTIONS(917), - [anon_sym_random_float] = ACTIONS(917), - [anon_sym_random_integer] = ACTIONS(917), - [anon_sym_columns] = ACTIONS(917), - [anon_sym_rows] = ACTIONS(917), - [anon_sym_reverse] = ACTIONS(917), - }, - [428] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [429] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(165), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(203), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [430] = { - [sym_expression] = STATE(356), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(165), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(806), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(142), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(193), - [anon_sym_async] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(223), - [anon_sym_assert] = ACTIONS(225), - [anon_sym_assert_equal] = ACTIONS(225), - [anon_sym_download] = ACTIONS(225), - [anon_sym_help] = ACTIONS(225), - [anon_sym_length] = ACTIONS(225), - [anon_sym_output] = ACTIONS(225), - [anon_sym_output_error] = ACTIONS(225), - [anon_sym_type] = ACTIONS(225), - [anon_sym_append] = ACTIONS(225), - [anon_sym_metadata] = ACTIONS(225), - [anon_sym_move] = ACTIONS(225), - [anon_sym_read] = ACTIONS(225), - [anon_sym_workdir] = ACTIONS(225), - [anon_sym_write] = ACTIONS(225), - [anon_sym_from_json] = ACTIONS(225), - [anon_sym_to_json] = ACTIONS(225), - [anon_sym_to_string] = ACTIONS(225), - [anon_sym_to_float] = ACTIONS(225), - [anon_sym_bash] = ACTIONS(225), - [anon_sym_fish] = ACTIONS(225), - [anon_sym_raw] = ACTIONS(225), - [anon_sym_sh] = ACTIONS(225), - [anon_sym_zsh] = ACTIONS(225), - [anon_sym_random] = ACTIONS(225), - [anon_sym_random_boolean] = ACTIONS(225), - [anon_sym_random_float] = ACTIONS(225), - [anon_sym_random_integer] = ACTIONS(225), - [anon_sym_columns] = ACTIONS(225), - [anon_sym_rows] = ACTIONS(225), - [anon_sym_reverse] = ACTIONS(225), - }, - [431] = { - [sym_expression] = STATE(738), - [sym__expression_kind] = STATE(727), - [sym_value] = STATE(727), - [sym_boolean] = STATE(728), - [sym_list] = STATE(728), - [sym_map] = STATE(728), - [sym_future] = STATE(728), - [sym_index] = STATE(727), - [sym_math] = STATE(727), - [sym_logic] = STATE(727), - [sym_identifier_list] = STATE(839), - [sym_table] = STATE(728), - [sym_function] = STATE(728), - [sym_function_call] = STATE(727), - [sym__context_defined_function] = STATE(726), - [sym_built_in_function] = STATE(726), - [sym__built_in_function_name] = STATE(173), - [aux_sym_match_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(928), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(932), - [sym_string] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_map] = ACTIONS(938), - [anon_sym_async] = ACTIONS(940), - [anon_sym_await] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_while] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_transform] = ACTIONS(942), - [anon_sym_filter] = ACTIONS(942), - [anon_sym_find] = ACTIONS(942), - [anon_sym_remove] = ACTIONS(942), - [anon_sym_reduce] = ACTIONS(942), - [anon_sym_select] = ACTIONS(942), - [anon_sym_insert] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_table] = ACTIONS(946), - [anon_sym_assert] = ACTIONS(53), - [anon_sym_assert_equal] = ACTIONS(53), - [anon_sym_download] = ACTIONS(53), - [anon_sym_help] = ACTIONS(53), - [anon_sym_length] = ACTIONS(53), - [anon_sym_output] = ACTIONS(53), - [anon_sym_output_error] = ACTIONS(53), - [anon_sym_type] = ACTIONS(53), - [anon_sym_append] = ACTIONS(53), - [anon_sym_metadata] = ACTIONS(53), - [anon_sym_move] = ACTIONS(53), - [anon_sym_read] = ACTIONS(53), - [anon_sym_workdir] = ACTIONS(53), - [anon_sym_write] = ACTIONS(53), - [anon_sym_from_json] = ACTIONS(53), - [anon_sym_to_json] = ACTIONS(53), - [anon_sym_to_string] = ACTIONS(53), - [anon_sym_to_float] = ACTIONS(53), - [anon_sym_bash] = ACTIONS(53), - [anon_sym_fish] = ACTIONS(53), - [anon_sym_raw] = ACTIONS(53), - [anon_sym_sh] = ACTIONS(53), - [anon_sym_zsh] = ACTIONS(53), - [anon_sym_random] = ACTIONS(53), - [anon_sym_random_boolean] = ACTIONS(53), - [anon_sym_random_float] = ACTIONS(53), - [anon_sym_random_integer] = ACTIONS(53), - [anon_sym_columns] = ACTIONS(53), - [anon_sym_rows] = ACTIONS(53), - [anon_sym_reverse] = ACTIONS(53), - }, - [432] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1157), - [sym_integer] = ACTIONS(1159), - [sym_float] = ACTIONS(1157), - [sym_string] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_map] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_EQ_GT] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1159), - [anon_sym_filter] = ACTIONS(1159), - [anon_sym_find] = ACTIONS(1159), - [anon_sym_remove] = ACTIONS(1159), - [anon_sym_reduce] = ACTIONS(1159), - [anon_sym_select] = ACTIONS(1159), - [anon_sym_insert] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_table] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1159), - [anon_sym_assert_equal] = ACTIONS(1159), - [anon_sym_download] = ACTIONS(1159), - [anon_sym_help] = ACTIONS(1159), - [anon_sym_length] = ACTIONS(1159), - [anon_sym_output] = ACTIONS(1159), - [anon_sym_output_error] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_append] = ACTIONS(1159), - [anon_sym_metadata] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [anon_sym_read] = ACTIONS(1159), - [anon_sym_workdir] = ACTIONS(1159), - [anon_sym_write] = ACTIONS(1159), - [anon_sym_from_json] = ACTIONS(1159), - [anon_sym_to_json] = ACTIONS(1159), - [anon_sym_to_string] = ACTIONS(1159), - [anon_sym_to_float] = ACTIONS(1159), - [anon_sym_bash] = ACTIONS(1159), - [anon_sym_fish] = ACTIONS(1159), - [anon_sym_raw] = ACTIONS(1159), - [anon_sym_sh] = ACTIONS(1159), - [anon_sym_zsh] = ACTIONS(1159), - [anon_sym_random] = ACTIONS(1159), - [anon_sym_random_boolean] = ACTIONS(1159), - [anon_sym_random_float] = ACTIONS(1159), - [anon_sym_random_integer] = ACTIONS(1159), - [anon_sym_columns] = ACTIONS(1159), - [anon_sym_rows] = ACTIONS(1159), - [anon_sym_reverse] = ACTIONS(1159), - }, - [433] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [434] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [435] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [436] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(377), - [aux_sym__expression_list] = STATE(172), - [sym_value] = STATE(377), - [sym_boolean] = STATE(409), - [sym_list] = STATE(409), - [sym_map] = STATE(409), - [sym_future] = STATE(409), - [sym_index] = STATE(377), - [sym_math] = STATE(377), - [sym_logic] = STATE(377), - [sym_identifier_list] = STATE(816), - [sym_table] = STATE(409), - [sym_function] = STATE(409), - [sym_function_call] = STATE(377), - [sym__context_defined_function] = STATE(372), - [sym_built_in_function] = STATE(372), - [sym__built_in_function_name] = STATE(161), - [sym_identifier] = ACTIONS(824), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_map] = ACTIONS(229), - [anon_sym_async] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_table] = ACTIONS(257), - [anon_sym_assert] = ACTIONS(259), - [anon_sym_assert_equal] = ACTIONS(259), - [anon_sym_download] = ACTIONS(259), - [anon_sym_help] = ACTIONS(259), - [anon_sym_length] = ACTIONS(259), - [anon_sym_output] = ACTIONS(259), - [anon_sym_output_error] = ACTIONS(259), - [anon_sym_type] = ACTIONS(259), - [anon_sym_append] = ACTIONS(259), - [anon_sym_metadata] = ACTIONS(259), - [anon_sym_move] = ACTIONS(259), - [anon_sym_read] = ACTIONS(259), - [anon_sym_workdir] = ACTIONS(259), - [anon_sym_write] = ACTIONS(259), - [anon_sym_from_json] = ACTIONS(259), - [anon_sym_to_json] = ACTIONS(259), - [anon_sym_to_string] = ACTIONS(259), - [anon_sym_to_float] = ACTIONS(259), - [anon_sym_bash] = ACTIONS(259), - [anon_sym_fish] = ACTIONS(259), - [anon_sym_raw] = ACTIONS(259), - [anon_sym_sh] = ACTIONS(259), - [anon_sym_zsh] = ACTIONS(259), - [anon_sym_random] = ACTIONS(259), - [anon_sym_random_boolean] = ACTIONS(259), - [anon_sym_random_float] = ACTIONS(259), - [anon_sym_random_integer] = ACTIONS(259), - [anon_sym_columns] = ACTIONS(259), - [anon_sym_rows] = ACTIONS(259), - [anon_sym_reverse] = ACTIONS(259), - }, - [437] = { - [sym_math_operator] = STATE(668), - [sym_logic_operator] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1115), - [sym_integer] = ACTIONS(1117), - [sym_float] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_map] = ACTIONS(1117), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_await] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(79), - [anon_sym_EQ_EQ] = ACTIONS(83), - [anon_sym_BANG_EQ] = ACTIONS(83), - [anon_sym_AMP_AMP] = ACTIONS(83), - [anon_sym_PIPE_PIPE] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_EQ_GT] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_transform] = ACTIONS(1117), - [anon_sym_filter] = ACTIONS(1117), - [anon_sym_find] = ACTIONS(1117), - [anon_sym_remove] = ACTIONS(1117), - [anon_sym_reduce] = ACTIONS(1117), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_insert] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_table] = ACTIONS(1117), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_assert_equal] = ACTIONS(1117), - [anon_sym_download] = ACTIONS(1117), - [anon_sym_help] = ACTIONS(1117), - [anon_sym_length] = ACTIONS(1117), - [anon_sym_output] = ACTIONS(1117), - [anon_sym_output_error] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1117), - [anon_sym_append] = ACTIONS(1117), - [anon_sym_metadata] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1117), - [anon_sym_read] = ACTIONS(1117), - [anon_sym_workdir] = ACTIONS(1117), - [anon_sym_write] = ACTIONS(1117), - [anon_sym_from_json] = ACTIONS(1117), - [anon_sym_to_json] = ACTIONS(1117), - [anon_sym_to_string] = ACTIONS(1117), - [anon_sym_to_float] = ACTIONS(1117), - [anon_sym_bash] = ACTIONS(1117), - [anon_sym_fish] = ACTIONS(1117), - [anon_sym_raw] = ACTIONS(1117), - [anon_sym_sh] = ACTIONS(1117), - [anon_sym_zsh] = ACTIONS(1117), - [anon_sym_random] = ACTIONS(1117), - [anon_sym_random_boolean] = ACTIONS(1117), - [anon_sym_random_float] = ACTIONS(1117), - [anon_sym_random_integer] = ACTIONS(1117), - [anon_sym_columns] = ACTIONS(1117), - [anon_sym_rows] = ACTIONS(1117), - [anon_sym_reverse] = ACTIONS(1117), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_elseif, - ACTIONS(1344), 1, - anon_sym_else, - STATE(533), 1, - sym_else, - STATE(440), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1097), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1099), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [79] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_elseif, - ACTIONS(1346), 1, - anon_sym_else, - STATE(676), 1, - sym_else, - STATE(450), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1105), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1107), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [158] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_elseif, - ACTIONS(1344), 1, - anon_sym_else, - STATE(629), 1, - sym_else, - STATE(450), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1105), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1107), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [237] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_elseif, - ACTIONS(1346), 1, - anon_sym_else, - STATE(679), 1, - sym_else, - STATE(439), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1097), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1099), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [316] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1354), 1, - sym_integer, - ACTIONS(1363), 1, - anon_sym_LBRACK, - ACTIONS(1366), 1, - anon_sym_RBRACK, - ACTIONS(1368), 1, - anon_sym_map, - ACTIONS(1371), 1, - anon_sym_async, - ACTIONS(1374), 1, - anon_sym_EQ_GT, - ACTIONS(1377), 1, - anon_sym_PIPE, - ACTIONS(1380), 1, - anon_sym_table, - STATE(161), 1, - sym__built_in_function_name, - STATE(442), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(1357), 2, - sym_float, - sym_string, - ACTIONS(1360), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(1383), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [422] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1386), 1, - anon_sym_RBRACE, - STATE(161), 1, - sym__built_in_function_name, - STATE(446), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [528] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(442), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [634] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1390), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(442), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [740] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_RBRACE, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(968), 1, - anon_sym_LPAREN, - ACTIONS(971), 1, - sym_integer, - ACTIONS(980), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - anon_sym_map, - ACTIONS(1001), 1, - anon_sym_async, - ACTIONS(1004), 1, - anon_sym_EQ_GT, - ACTIONS(1007), 1, - anon_sym_table, - ACTIONS(1392), 1, - anon_sym_PIPE, - STATE(161), 1, - sym__built_in_function_name, - STATE(446), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(974), 2, - sym_float, - sym_string, - ACTIONS(977), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(1010), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [846] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1395), 1, - anon_sym_RBRACE, - STATE(161), 1, - sym__built_in_function_name, - STATE(446), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [952] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1397), 1, - anon_sym_RBRACE, - STATE(161), 1, - sym__built_in_function_name, - STATE(446), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1058] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1399), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(442), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - anon_sym_elseif, - STATE(450), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1150), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1152), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1238] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1404), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(444), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1344] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1406), 1, - anon_sym_RBRACE, - STATE(161), 1, - sym__built_in_function_name, - STATE(446), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1450] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1408), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(449), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1556] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(1410), 1, - anon_sym_RBRACK, - STATE(161), 1, - sym__built_in_function_name, - STATE(445), 1, - aux_sym_list_repeat1, - STATE(455), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1662] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DASH, - ACTIONS(233), 1, - anon_sym_COLON, - ACTIONS(1416), 1, - anon_sym_COMMA, - STATE(553), 1, - sym_math_operator, - STATE(557), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1414), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - ACTIONS(1412), 38, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1747] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(447), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1850] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(448), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1953] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DASH, - ACTIONS(233), 1, - anon_sym_COLON, - ACTIONS(1418), 1, - anon_sym_COMMA, - STATE(553), 1, - sym_math_operator, - STATE(557), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1133), 6, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1135), 38, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2038] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(452), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2141] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(443), 1, - aux_sym__expression_list, - STATE(458), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2244] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1428), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(721), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2344] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(14), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2444] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(82), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - anon_sym_SEMI, - ACTIONS(1115), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1117), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2614] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(81), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2714] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(80), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(79), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2914] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(65), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3014] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3114] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(748), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(66), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3314] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(74), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(77), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3514] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(75), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3614] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(29), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3714] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(76), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(308), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3914] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(28), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4014] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(85), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4114] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(946), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(736), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(90), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4314] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1434), 1, - sym_identifier, - ACTIONS(1436), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(735), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(386), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4514] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(63), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4614] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(398), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4714] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(135), 1, - sym__built_in_function_name, - STATE(286), 1, - sym_expression, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(55), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4914] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(309), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5014] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(762), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(765), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5114] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(44), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(43), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5314] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(41), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(88), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5514] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(87), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5614] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(73), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5714] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(61), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(60), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5914] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1438), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(756), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6014] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(57), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6114] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(40), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(154), 1, - sym__built_in_function_name, - STATE(351), 1, - sym_expression, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6314] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(10), 1, - sym_expression, - STATE(154), 1, - sym__built_in_function_name, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1440), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(732), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6514] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(54), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1250), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6682] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(38), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6782] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1442), 1, - sym_identifier, - ACTIONS(1444), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(703), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6882] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1440), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(747), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6982] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(37), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7082] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(30), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7182] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(33), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7282] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(68), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7382] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(316), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7482] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(32), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7582] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(412), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7682] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(71), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7782] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(760), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7882] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(730), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7982] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1428), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(706), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8082] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1446), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(705), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8182] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(757), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8282] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(154), 1, - sym__built_in_function_name, - STATE(355), 1, - sym_expression, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8382] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(154), 1, - sym__built_in_function_name, - STATE(360), 1, - sym_expression, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8482] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(4), 1, - sym_expression, - STATE(141), 1, - sym__built_in_function_name, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8582] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(273), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8682] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(352), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8782] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(114), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8882] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(45), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8982] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(110), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9082] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(154), 1, - sym__built_in_function_name, - STATE(361), 1, - sym_expression, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9182] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1440), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(758), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9282] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(13), 1, - sym_expression, - STATE(164), 1, - sym__built_in_function_name, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1105), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1107), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9450] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(135), 1, - sym__built_in_function_name, - STATE(290), 1, - sym_expression, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9550] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(135), 1, - sym__built_in_function_name, - STATE(287), 1, - sym_expression, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9650] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(106), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9750] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(103), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9850] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(46), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9950] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(47), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10050] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(48), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10150] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(49), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10250] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(50), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10350] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(272), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10450] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(99), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10550] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(98), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10650] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(97), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10750] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(53), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10850] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(96), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10950] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(135), 1, - sym__built_in_function_name, - STATE(278), 1, - sym_expression, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11050] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(344), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11150] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(78), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11250] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(56), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11350] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(346), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11450] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(93), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11550] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(376), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11650] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(91), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11750] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(353), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11850] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(762), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(763), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1227), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12018] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(415), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1208), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12186] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1450), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(733), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12286] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(86), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1188), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12454] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(392), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1184), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12622] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(89), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12722] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(391), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12822] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1442), 1, - sym_identifier, - ACTIONS(1444), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(710), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12922] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1452), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(746), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13022] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(94), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13122] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(95), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13222] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(100), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13322] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(104), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13422] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(115), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13522] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(112), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13622] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(111), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13722] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1454), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(734), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1286), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13890] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(762), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(764), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13990] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1428), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(713), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14090] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(62), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1282), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14258] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(42), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14358] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(373), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14458] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(64), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14558] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(39), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14658] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1456), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(744), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14758] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(67), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14858] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1458), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(753), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(69), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15058] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(270), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15158] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(266), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15258] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(267), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15358] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1446), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(702), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15458] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1460), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(754), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15558] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(59), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15658] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(410), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15758] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(946), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(739), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15858] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(946), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(743), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(411), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16058] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(390), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16158] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(384), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16258] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(399), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16358] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(36), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16458] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(127), 1, - sym__built_in_function_name, - STATE(275), 1, - sym_expression, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16558] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_map, - ACTIONS(73), 1, - anon_sym_async, - ACTIONS(93), 1, - anon_sym_EQ_GT, - ACTIONS(115), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(2), 1, - sym_expression, - STATE(127), 1, - sym__built_in_function_name, - STATE(849), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(117), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16658] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(70), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16758] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1442), 1, - sym_identifier, - ACTIONS(1444), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(720), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16858] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(35), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(34), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17058] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(31), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17158] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(51), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17258] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(107), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17358] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(113), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17458] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(83), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17558] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(374), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17658] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(135), 1, - sym__built_in_function_name, - STATE(289), 1, - sym_expression, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17758] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1238), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17926] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(52), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18026] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_map, - ACTIONS(123), 1, - anon_sym_async, - ACTIONS(131), 1, - anon_sym_EQ_GT, - ACTIONS(151), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(3), 1, - sym_expression, - STATE(135), 1, - sym__built_in_function_name, - STATE(951), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(153), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18126] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1462), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(742), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18226] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(432), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18326] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(19), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18426] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(404), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18526] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(101), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18626] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(102), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1274), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1270), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18862] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1428), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(700), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18962] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(946), 1, - anon_sym_table, - STATE(173), 1, - sym__built_in_function_name, - STATE(737), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19062] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(109), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19162] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(117), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19262] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(8), 1, - sym_expression, - STATE(154), 1, - sym__built_in_function_name, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19362] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(331), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19462] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(397), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19562] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19662] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1464), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(761), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19762] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(6), 1, - sym_expression, - STATE(161), 1, - sym__built_in_function_name, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19862] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1428), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(724), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19962] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_map, - ACTIONS(940), 1, - anon_sym_async, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_table, - ACTIONS(1440), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(749), 1, - sym_expression, - STATE(839), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20062] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1442), 1, - sym_identifier, - ACTIONS(1444), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(717), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20162] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1442), 1, - sym_identifier, - ACTIONS(1444), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(718), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1266), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1204), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1260), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1262), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1258), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1278), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20602] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(421), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20702] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(304), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20802] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(314), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20902] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_map, - ACTIONS(159), 1, - anon_sym_async, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(187), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(141), 1, - sym__built_in_function_name, - STATE(299), 1, - sym_expression, - STATE(877), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(189), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21002] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(347), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21102] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - sym_integer, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(339), 1, - anon_sym_map, - ACTIONS(341), 1, - anon_sym_async, - ACTIONS(349), 1, - anon_sym_EQ_GT, - ACTIONS(369), 1, - anon_sym_table, - ACTIONS(832), 1, - sym_identifier, - STATE(154), 1, - sym__built_in_function_name, - STATE(357), 1, - sym_expression, - STATE(836), 1, - sym_identifier_list, - ACTIONS(65), 2, - sym_float, - sym_string, - ACTIONS(67), 2, - anon_sym_true, - anon_sym_false, - STATE(292), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(336), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - STATE(341), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(371), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21202] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(105), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21302] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(229), 1, - anon_sym_map, - ACTIONS(231), 1, - anon_sym_async, - ACTIONS(237), 1, - anon_sym_EQ_GT, - ACTIONS(257), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(161), 1, - sym__built_in_function_name, - STATE(359), 1, - sym_expression, - STATE(816), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(259), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21402] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21502] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1446), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(716), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21602] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1446), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(714), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21702] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - sym_integer, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_map, - ACTIONS(1424), 1, - anon_sym_async, - ACTIONS(1426), 1, - anon_sym_EQ_GT, - ACTIONS(1446), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_table, - STATE(164), 1, - sym__built_in_function_name, - STATE(709), 1, - sym_expression, - STATE(812), 1, - sym_identifier_list, - ACTIONS(932), 2, - sym_float, - sym_string, - ACTIONS(934), 2, - anon_sym_true, - anon_sym_false, - STATE(726), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(727), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(728), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1192), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21870] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(302), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21970] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(108), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22070] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(425), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1196), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22238] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(58), 1, - sym_expression, - STATE(173), 1, - sym__built_in_function_name, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22338] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_map, - ACTIONS(21), 1, - anon_sym_async, - ACTIONS(29), 1, - anon_sym_EQ_GT, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(51), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(173), 1, - sym__built_in_function_name, - STATE(420), 1, - sym_expression, - STATE(934), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(53), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22438] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(5), 1, - sym_expression, - STATE(142), 1, - sym__built_in_function_name, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22538] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(454), 1, - anon_sym_map, - ACTIONS(456), 1, - anon_sym_async, - ACTIONS(462), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(164), 1, - sym__built_in_function_name, - STATE(385), 1, - sym_expression, - STATE(834), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(484), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22638] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(300), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1200), 50, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22806] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(298), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22906] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_PIPE, - ACTIONS(193), 1, - anon_sym_map, - ACTIONS(195), 1, - anon_sym_async, - ACTIONS(203), 1, - anon_sym_EQ_GT, - ACTIONS(223), 1, - anon_sym_table, - ACTIONS(963), 1, - sym_identifier, - STATE(142), 1, - sym__built_in_function_name, - STATE(342), 1, - sym_expression, - STATE(806), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(372), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(377), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - STATE(409), 6, - sym_boolean, - sym_list, - sym_map, - sym_future, - sym_table, - sym_function, - ACTIONS(225), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1238), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1274), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1250), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1270), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1105), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1107), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1286), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1208), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1282), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1266), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1260), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1262), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1184), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1258), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1278), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1200), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 1, - anon_sym_SEMI, - ACTIONS(1115), 8, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1117), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1196), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1192), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 9, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1188), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1466), 49, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_await, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 7, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(862), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 7, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1470), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1474), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1472), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1476), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1482), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1480), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1486), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1484), 37, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_map, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24567] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1140), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1244), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT_DOT, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24661] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1492), 1, - anon_sym_DOT_DOT, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1229), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24719] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_DOT_DOT, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24781] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1174), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24837] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_COLON, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1140), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24873] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1219), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1206), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [24955] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [24985] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25015] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25045] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_COLON, - STATE(660), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1125), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25081] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - anon_sym_COLON, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1125), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25117] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - anon_sym_COLON, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1140), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1304), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25179] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25209] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1125), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1240), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25271] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(609), 1, - sym_math_operator, - STATE(644), 1, - sym_logic_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25301] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(581), 1, - sym_math_operator, - STATE(631), 1, - sym_logic_operator, - ACTIONS(1146), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1144), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1252), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1178), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1298), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1288), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1294), 16, - anon_sym_RPAREN, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25461] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(517), 1, - sym_logic_operator, - STATE(518), 1, - sym_math_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25490] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1502), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25525] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1504), 1, - anon_sym_COLON, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25560] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1506), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25595] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1508), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25630] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1510), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25665] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1125), 1, - anon_sym_EQ_GT, - ACTIONS(1500), 1, - anon_sym_COLON, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25700] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25729] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1512), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25764] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [25793] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1514), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25828] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1516), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25863] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1518), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 1, - anon_sym_EQ_GT, - ACTIONS(1500), 1, - anon_sym_COLON, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25933] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1520), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25968] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1522), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26003] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1524), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26038] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(1123), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1121), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26067] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(517), 1, - sym_logic_operator, - STATE(518), 1, - sym_math_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26096] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(1131), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1129), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26125] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1526), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26160] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1528), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26195] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1530), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26230] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1532), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26265] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1534), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26300] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1536), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26335] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1538), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26370] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1125), 1, - anon_sym_RPAREN, - ACTIONS(1540), 1, - anon_sym_COLON, - STATE(517), 1, - sym_logic_operator, - STATE(518), 1, - sym_math_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26405] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1504), 1, - anon_sym_COLON, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26440] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1542), 1, - anon_sym_EQ_GT, - STATE(599), 1, - sym_math_operator, - STATE(600), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26475] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 1, - anon_sym_RPAREN, - ACTIONS(1540), 1, - anon_sym_COLON, - STATE(517), 1, - sym_logic_operator, - STATE(518), 1, - sym_math_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COLON, - ACTIONS(1544), 1, - sym_identifier, - STATE(508), 1, - sym_math_operator, - STATE(531), 1, - sym_logic_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26545] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1540), 1, - anon_sym_COLON, - STATE(517), 1, - sym_logic_operator, - STATE(518), 1, - sym_math_operator, - ACTIONS(85), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(79), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(83), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1546), 1, - anon_sym_RPAREN, - ACTIONS(1300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1298), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1548), 1, - anon_sym_RPAREN, - ACTIONS(1300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1298), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1550), 1, - anon_sym_RPAREN, - ACTIONS(1300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1298), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - sym_identifier, - ACTIONS(1554), 1, - anon_sym_PIPE, - STATE(768), 1, - aux_sym_identifier_list_repeat1, - [26665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - sym_identifier, - ACTIONS(1556), 1, - anon_sym_PIPE, - STATE(766), 1, - aux_sym_identifier_list_repeat1, - [26678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 1, - sym_identifier, - ACTIONS(1561), 1, - anon_sym_PIPE, - STATE(768), 1, - aux_sym_identifier_list_repeat1, - [26691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - anon_sym_COMMA, - ACTIONS(1563), 2, - sym_identifier, - anon_sym_PIPE, - [26702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - sym_identifier, - ACTIONS(1567), 1, - anon_sym_PIPE, - STATE(768), 1, - aux_sym_identifier_list_repeat1, - [26715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - sym_identifier, - ACTIONS(1569), 1, - anon_sym_PIPE, - STATE(770), 1, - aux_sym_identifier_list_repeat1, - [26728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(659), 1, - sym_identifier_list, - [26738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(827), 1, - sym_identifier_list, - [26748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(655), 1, - sym_identifier_list, - [26758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(503), 1, - sym_identifier_list, - [26768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(480), 1, - sym_identifier_list, - [26778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(872), 1, - sym_identifier_list, - [26788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(549), 1, - sym_identifier_list, - [26798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(937), 1, - sym_identifier_list, - [26808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(842), 1, - sym_identifier_list, - [26818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(526), 1, - sym_identifier_list, - [26828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1482), 2, - anon_sym_EQ_GT, - anon_sym_from, - [26836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1561), 2, - sym_identifier, - anon_sym_PIPE, - [26844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(461), 1, - sym_identifier_list, - [26854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 2, - anon_sym_EQ_GT, - anon_sym_from, - [26862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(650), 1, - sym_identifier_list, - [26872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(802), 1, - sym_identifier_list, - [26882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(594), 1, - sym_identifier_list, - [26892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(857), 1, - sym_identifier_list, - [26902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(643), 1, - sym_identifier_list, - [26912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(899), 1, - sym_identifier_list, - [26922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(876), 1, - sym_identifier_list, - [26932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(673), 1, - sym_identifier_list, - [26942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(897), 1, - sym_identifier_list, - [26952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(521), 1, - sym_identifier_list, - [26962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_PIPE, - STATE(848), 1, - sym_identifier_list, - [26972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(651), 1, - sym_identifier_list, - [26982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - anon_sym_PIPE, - STATE(602), 1, - sym_identifier_list, - [26992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1573), 1, - anon_sym_from, - [26999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 1, - sym_identifier, - [27006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 1, - sym_identifier, - [27013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - anon_sym_from, - [27020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_in, - [27027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 1, - sym_identifier, - [27034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 1, - anon_sym_into, - [27041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - anon_sym_EQ_GT, - [27048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_in, - [27055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 1, - anon_sym_in, - [27062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_in, - [27069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_from, - [27076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 1, - anon_sym_into, - [27083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1599), 1, - anon_sym_EQ_GT, - [27090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 1, - anon_sym_in, - [27097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - anon_sym_in, - [27104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_in, - [27111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, - anon_sym_EQ_GT, - [27118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 1, - anon_sym_in, - [27125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1611), 1, - anon_sym_from, - [27132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_in, - [27139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - sym_identifier, - [27146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_in, - [27153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1619), 1, - anon_sym_in, - [27160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_in, - [27167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 1, - anon_sym_from, - [27174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 1, - anon_sym_in, - [27181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_in, - [27188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_from, - [27195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - anon_sym_LBRACE, - [27202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1633), 1, - sym_identifier, - [27209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, - sym_identifier, - [27216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, - sym_identifier, - [27223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 1, - sym_identifier, - [27230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 1, - anon_sym_into, - [27237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_EQ_GT, - [27244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 1, - sym_identifier, - [27251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_EQ_GT, - [27258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_in, - [27265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1651), 1, - anon_sym_in, - [27272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_EQ_GT, - [27279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1655), 1, - anon_sym_in, - [27286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 1, - anon_sym_from, - [27293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_from, - [27300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, - sym_identifier, - [27307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_in, - [27314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - sym_identifier, - [27321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_in, - [27328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - sym_identifier, - [27335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1671), 1, - anon_sym_from, - [27342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 1, - anon_sym_EQ_GT, - [27349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1675), 1, - sym_identifier, - [27356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 1, - sym_identifier, - [27363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 1, - anon_sym_in, - [27370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 1, - anon_sym_in, - [27377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1683), 1, - anon_sym_in, - [27384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1685), 1, - anon_sym_from, - [27391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, - anon_sym_to, - [27398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 1, - anon_sym_from, - [27405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, - anon_sym_LBRACE, - [27412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1693), 1, - sym_identifier, - [27419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - sym_identifier, - [27426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1697), 1, - sym_identifier, - [27433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, - sym_identifier, - [27440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, - sym_identifier, - [27447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 1, - anon_sym_in, - [27454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, - anon_sym_into, - [27461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_in, - [27468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - anon_sym_in, - [27475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - anon_sym_from, - [27482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, - sym_identifier, - [27489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1715), 1, - anon_sym_in, - [27496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_in, - [27503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_from, - [27510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_in, - [27517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1723), 1, - sym_identifier, - [27524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_in, - [27531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_from, - [27538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_EQ_GT, - [27545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - [27552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - ts_builtin_sym_end, - [27559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 1, - anon_sym_in, - [27566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_LBRACE, - [27573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - sym_identifier, - [27580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 1, - sym_identifier, - [27587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_into, - [27594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1745), 1, - sym_identifier, - [27601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - sym_identifier, - [27608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_in, - [27615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_in, - [27622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - ts_builtin_sym_end, - [27629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1755), 1, - anon_sym_in, - [27636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - anon_sym_in, - [27643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_from, - [27650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_in, - [27657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - sym_identifier, - [27664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_in, - [27671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_in, - [27678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_from, - [27685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, - sym_identifier, - [27692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1773), 1, - anon_sym_from, - [27699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_from, - [27706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 1, - sym_identifier, - [27713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - sym_identifier, - [27720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - anon_sym_in, - [27727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - sym_identifier, - [27734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - sym_identifier, - [27741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - anon_sym_in, - [27748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - anon_sym_in, - [27755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - anon_sym_in, - [27762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_in, - [27769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - anon_sym_in, - [27776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym_from, - [27783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_in, - [27790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - sym_identifier, - [27797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1803), 1, - anon_sym_in, - [27804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 1, - sym_identifier, - [27811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - sym_identifier, - [27818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - sym_identifier, - [27825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - sym_identifier, - [27832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 1, - sym_identifier, - [27839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_in, - [27846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - sym_identifier, - [27853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - sym_identifier, - [27860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - sym_identifier, - [27867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_into, - [27874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 1, - sym_identifier, - [27881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - sym_identifier, - [27888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_in, - [27895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_into, - [27902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 1, - anon_sym_into, - [27909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym_to, - [27916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - sym_identifier, - [27923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - sym_identifier, - [27930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - sym_identifier, - [27937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_EQ_GT, - [27944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 1, - sym_identifier, - [27951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - sym_identifier, - [27958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_from, - [27965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_in, - [27972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 1, - anon_sym_to, - [27979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - sym_identifier, - [27986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - sym_identifier, - [27993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - sym_identifier, - [28000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_in, - [28007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - sym_identifier, - [28014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - sym_identifier, - [28021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - sym_identifier, - [28028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1869), 1, - anon_sym_to, - [28035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - sym_identifier, - [28042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1873), 1, - sym_identifier, - [28049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - sym_identifier, - [28056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_EQ_GT, - [28063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - sym_identifier, - [28070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - sym_identifier, - [28077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_in, - [28084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_to, - [28091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - sym_identifier, - [28098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1889), 1, - anon_sym_to, - [28105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 1, - sym_identifier, - [28112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_to, - [28119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 1, - sym_identifier, - [28126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_to, - [28133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - sym_identifier, - [28140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - anon_sym_to, - [28147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1903), 1, - sym_identifier, - [28154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_to, - [28161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - sym_identifier, - [28168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_identifier, - [28175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 1, - sym_identifier, - [28182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - sym_identifier, - [28189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - sym_identifier, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(438)] = 0, - [SMALL_STATE(439)] = 79, - [SMALL_STATE(440)] = 158, - [SMALL_STATE(441)] = 237, - [SMALL_STATE(442)] = 316, - [SMALL_STATE(443)] = 422, - [SMALL_STATE(444)] = 528, - [SMALL_STATE(445)] = 634, - [SMALL_STATE(446)] = 740, - [SMALL_STATE(447)] = 846, - [SMALL_STATE(448)] = 952, - [SMALL_STATE(449)] = 1058, - [SMALL_STATE(450)] = 1164, - [SMALL_STATE(451)] = 1238, - [SMALL_STATE(452)] = 1344, - [SMALL_STATE(453)] = 1450, - [SMALL_STATE(454)] = 1556, - [SMALL_STATE(455)] = 1662, - [SMALL_STATE(456)] = 1747, - [SMALL_STATE(457)] = 1850, - [SMALL_STATE(458)] = 1953, - [SMALL_STATE(459)] = 2038, - [SMALL_STATE(460)] = 2141, - [SMALL_STATE(461)] = 2244, - [SMALL_STATE(462)] = 2344, - [SMALL_STATE(463)] = 2444, - [SMALL_STATE(464)] = 2544, - [SMALL_STATE(465)] = 2614, - [SMALL_STATE(466)] = 2714, - [SMALL_STATE(467)] = 2814, - [SMALL_STATE(468)] = 2914, - [SMALL_STATE(469)] = 3014, - [SMALL_STATE(470)] = 3114, - [SMALL_STATE(471)] = 3214, - [SMALL_STATE(472)] = 3314, - [SMALL_STATE(473)] = 3414, - [SMALL_STATE(474)] = 3514, - [SMALL_STATE(475)] = 3614, - [SMALL_STATE(476)] = 3714, - [SMALL_STATE(477)] = 3814, - [SMALL_STATE(478)] = 3914, - [SMALL_STATE(479)] = 4014, - [SMALL_STATE(480)] = 4114, - [SMALL_STATE(481)] = 4214, - [SMALL_STATE(482)] = 4314, - [SMALL_STATE(483)] = 4414, - [SMALL_STATE(484)] = 4514, - [SMALL_STATE(485)] = 4614, - [SMALL_STATE(486)] = 4714, - [SMALL_STATE(487)] = 4814, - [SMALL_STATE(488)] = 4914, - [SMALL_STATE(489)] = 5014, - [SMALL_STATE(490)] = 5114, - [SMALL_STATE(491)] = 5214, - [SMALL_STATE(492)] = 5314, - [SMALL_STATE(493)] = 5414, - [SMALL_STATE(494)] = 5514, - [SMALL_STATE(495)] = 5614, - [SMALL_STATE(496)] = 5714, - [SMALL_STATE(497)] = 5814, - [SMALL_STATE(498)] = 5914, - [SMALL_STATE(499)] = 6014, - [SMALL_STATE(500)] = 6114, - [SMALL_STATE(501)] = 6214, - [SMALL_STATE(502)] = 6314, - [SMALL_STATE(503)] = 6414, - [SMALL_STATE(504)] = 6514, - [SMALL_STATE(505)] = 6614, - [SMALL_STATE(506)] = 6682, - [SMALL_STATE(507)] = 6782, - [SMALL_STATE(508)] = 6882, - [SMALL_STATE(509)] = 6982, - [SMALL_STATE(510)] = 7082, - [SMALL_STATE(511)] = 7182, - [SMALL_STATE(512)] = 7282, - [SMALL_STATE(513)] = 7382, - [SMALL_STATE(514)] = 7482, - [SMALL_STATE(515)] = 7582, - [SMALL_STATE(516)] = 7682, - [SMALL_STATE(517)] = 7782, - [SMALL_STATE(518)] = 7882, - [SMALL_STATE(519)] = 7982, - [SMALL_STATE(520)] = 8082, - [SMALL_STATE(521)] = 8182, - [SMALL_STATE(522)] = 8282, - [SMALL_STATE(523)] = 8382, - [SMALL_STATE(524)] = 8482, - [SMALL_STATE(525)] = 8582, - [SMALL_STATE(526)] = 8682, - [SMALL_STATE(527)] = 8782, - [SMALL_STATE(528)] = 8882, - [SMALL_STATE(529)] = 8982, - [SMALL_STATE(530)] = 9082, - [SMALL_STATE(531)] = 9182, - [SMALL_STATE(532)] = 9282, - [SMALL_STATE(533)] = 9382, - [SMALL_STATE(534)] = 9450, - [SMALL_STATE(535)] = 9550, - [SMALL_STATE(536)] = 9650, - [SMALL_STATE(537)] = 9750, - [SMALL_STATE(538)] = 9850, - [SMALL_STATE(539)] = 9950, - [SMALL_STATE(540)] = 10050, - [SMALL_STATE(541)] = 10150, - [SMALL_STATE(542)] = 10250, - [SMALL_STATE(543)] = 10350, - [SMALL_STATE(544)] = 10450, - [SMALL_STATE(545)] = 10550, - [SMALL_STATE(546)] = 10650, - [SMALL_STATE(547)] = 10750, - [SMALL_STATE(548)] = 10850, - [SMALL_STATE(549)] = 10950, - [SMALL_STATE(550)] = 11050, - [SMALL_STATE(551)] = 11150, - [SMALL_STATE(552)] = 11250, - [SMALL_STATE(553)] = 11350, - [SMALL_STATE(554)] = 11450, - [SMALL_STATE(555)] = 11550, - [SMALL_STATE(556)] = 11650, - [SMALL_STATE(557)] = 11750, - [SMALL_STATE(558)] = 11850, - [SMALL_STATE(559)] = 11950, - [SMALL_STATE(560)] = 12018, - [SMALL_STATE(561)] = 12118, - [SMALL_STATE(562)] = 12186, - [SMALL_STATE(563)] = 12286, - [SMALL_STATE(564)] = 12386, - [SMALL_STATE(565)] = 12454, - [SMALL_STATE(566)] = 12554, - [SMALL_STATE(567)] = 12622, - [SMALL_STATE(568)] = 12722, - [SMALL_STATE(569)] = 12822, - [SMALL_STATE(570)] = 12922, - [SMALL_STATE(571)] = 13022, - [SMALL_STATE(572)] = 13122, - [SMALL_STATE(573)] = 13222, - [SMALL_STATE(574)] = 13322, - [SMALL_STATE(575)] = 13422, - [SMALL_STATE(576)] = 13522, - [SMALL_STATE(577)] = 13622, - [SMALL_STATE(578)] = 13722, - [SMALL_STATE(579)] = 13822, - [SMALL_STATE(580)] = 13890, - [SMALL_STATE(581)] = 13990, - [SMALL_STATE(582)] = 14090, - [SMALL_STATE(583)] = 14190, - [SMALL_STATE(584)] = 14258, - [SMALL_STATE(585)] = 14358, - [SMALL_STATE(586)] = 14458, - [SMALL_STATE(587)] = 14558, - [SMALL_STATE(588)] = 14658, - [SMALL_STATE(589)] = 14758, - [SMALL_STATE(590)] = 14858, - [SMALL_STATE(591)] = 14958, - [SMALL_STATE(592)] = 15058, - [SMALL_STATE(593)] = 15158, - [SMALL_STATE(594)] = 15258, - [SMALL_STATE(595)] = 15358, - [SMALL_STATE(596)] = 15458, - [SMALL_STATE(597)] = 15558, - [SMALL_STATE(598)] = 15658, - [SMALL_STATE(599)] = 15758, - [SMALL_STATE(600)] = 15858, - [SMALL_STATE(601)] = 15958, - [SMALL_STATE(602)] = 16058, - [SMALL_STATE(603)] = 16158, - [SMALL_STATE(604)] = 16258, - [SMALL_STATE(605)] = 16358, - [SMALL_STATE(606)] = 16458, - [SMALL_STATE(607)] = 16558, - [SMALL_STATE(608)] = 16658, - [SMALL_STATE(609)] = 16758, - [SMALL_STATE(610)] = 16858, - [SMALL_STATE(611)] = 16958, - [SMALL_STATE(612)] = 17058, - [SMALL_STATE(613)] = 17158, - [SMALL_STATE(614)] = 17258, - [SMALL_STATE(615)] = 17358, - [SMALL_STATE(616)] = 17458, - [SMALL_STATE(617)] = 17558, - [SMALL_STATE(618)] = 17658, - [SMALL_STATE(619)] = 17758, - [SMALL_STATE(620)] = 17858, - [SMALL_STATE(621)] = 17926, - [SMALL_STATE(622)] = 18026, - [SMALL_STATE(623)] = 18126, - [SMALL_STATE(624)] = 18226, - [SMALL_STATE(625)] = 18326, - [SMALL_STATE(626)] = 18426, - [SMALL_STATE(627)] = 18526, - [SMALL_STATE(628)] = 18626, - [SMALL_STATE(629)] = 18726, - [SMALL_STATE(630)] = 18794, - [SMALL_STATE(631)] = 18862, - [SMALL_STATE(632)] = 18962, - [SMALL_STATE(633)] = 19062, - [SMALL_STATE(634)] = 19162, - [SMALL_STATE(635)] = 19262, - [SMALL_STATE(636)] = 19362, - [SMALL_STATE(637)] = 19462, - [SMALL_STATE(638)] = 19562, - [SMALL_STATE(639)] = 19662, - [SMALL_STATE(640)] = 19762, - [SMALL_STATE(641)] = 19862, - [SMALL_STATE(642)] = 19962, - [SMALL_STATE(643)] = 20062, - [SMALL_STATE(644)] = 20162, - [SMALL_STATE(645)] = 20262, - [SMALL_STATE(646)] = 20330, - [SMALL_STATE(647)] = 20398, - [SMALL_STATE(648)] = 20466, - [SMALL_STATE(649)] = 20534, - [SMALL_STATE(650)] = 20602, - [SMALL_STATE(651)] = 20702, - [SMALL_STATE(652)] = 20802, - [SMALL_STATE(653)] = 20902, - [SMALL_STATE(654)] = 21002, - [SMALL_STATE(655)] = 21102, - [SMALL_STATE(656)] = 21202, - [SMALL_STATE(657)] = 21302, - [SMALL_STATE(658)] = 21402, - [SMALL_STATE(659)] = 21502, - [SMALL_STATE(660)] = 21602, - [SMALL_STATE(661)] = 21702, - [SMALL_STATE(662)] = 21802, - [SMALL_STATE(663)] = 21870, - [SMALL_STATE(664)] = 21970, - [SMALL_STATE(665)] = 22070, - [SMALL_STATE(666)] = 22170, - [SMALL_STATE(667)] = 22238, - [SMALL_STATE(668)] = 22338, - [SMALL_STATE(669)] = 22438, - [SMALL_STATE(670)] = 22538, - [SMALL_STATE(671)] = 22638, - [SMALL_STATE(672)] = 22738, - [SMALL_STATE(673)] = 22806, - [SMALL_STATE(674)] = 22906, - [SMALL_STATE(675)] = 23006, - [SMALL_STATE(676)] = 23072, - [SMALL_STATE(677)] = 23138, - [SMALL_STATE(678)] = 23204, - [SMALL_STATE(679)] = 23270, - [SMALL_STATE(680)] = 23336, - [SMALL_STATE(681)] = 23402, - [SMALL_STATE(682)] = 23468, - [SMALL_STATE(683)] = 23534, - [SMALL_STATE(684)] = 23600, - [SMALL_STATE(685)] = 23666, - [SMALL_STATE(686)] = 23732, - [SMALL_STATE(687)] = 23798, - [SMALL_STATE(688)] = 23864, - [SMALL_STATE(689)] = 23930, - [SMALL_STATE(690)] = 23998, - [SMALL_STATE(691)] = 24064, - [SMALL_STATE(692)] = 24130, - [SMALL_STATE(693)] = 24196, - [SMALL_STATE(694)] = 24259, - [SMALL_STATE(695)] = 24311, - [SMALL_STATE(696)] = 24363, - [SMALL_STATE(697)] = 24414, - [SMALL_STATE(698)] = 24465, - [SMALL_STATE(699)] = 24516, - [SMALL_STATE(700)] = 24567, - [SMALL_STATE(701)] = 24603, - [SMALL_STATE(702)] = 24629, - [SMALL_STATE(703)] = 24661, - [SMALL_STATE(704)] = 24693, - [SMALL_STATE(705)] = 24719, - [SMALL_STATE(706)] = 24749, - [SMALL_STATE(707)] = 24781, - [SMALL_STATE(708)] = 24811, - [SMALL_STATE(709)] = 24837, - [SMALL_STATE(710)] = 24873, - [SMALL_STATE(711)] = 24903, - [SMALL_STATE(712)] = 24929, - [SMALL_STATE(713)] = 24955, - [SMALL_STATE(714)] = 24985, - [SMALL_STATE(715)] = 25015, - [SMALL_STATE(716)] = 25045, - [SMALL_STATE(717)] = 25081, - [SMALL_STATE(718)] = 25117, - [SMALL_STATE(719)] = 25153, - [SMALL_STATE(720)] = 25179, - [SMALL_STATE(721)] = 25209, - [SMALL_STATE(722)] = 25245, - [SMALL_STATE(723)] = 25271, - [SMALL_STATE(724)] = 25301, - [SMALL_STATE(725)] = 25331, - [SMALL_STATE(726)] = 25357, - [SMALL_STATE(727)] = 25383, - [SMALL_STATE(728)] = 25409, - [SMALL_STATE(729)] = 25435, - [SMALL_STATE(730)] = 25461, - [SMALL_STATE(731)] = 25490, - [SMALL_STATE(732)] = 25525, - [SMALL_STATE(733)] = 25560, - [SMALL_STATE(734)] = 25595, - [SMALL_STATE(735)] = 25630, - [SMALL_STATE(736)] = 25665, - [SMALL_STATE(737)] = 25700, - [SMALL_STATE(738)] = 25729, - [SMALL_STATE(739)] = 25764, - [SMALL_STATE(740)] = 25793, - [SMALL_STATE(741)] = 25828, - [SMALL_STATE(742)] = 25863, - [SMALL_STATE(743)] = 25898, - [SMALL_STATE(744)] = 25933, - [SMALL_STATE(745)] = 25968, - [SMALL_STATE(746)] = 26003, - [SMALL_STATE(747)] = 26038, - [SMALL_STATE(748)] = 26067, - [SMALL_STATE(749)] = 26096, - [SMALL_STATE(750)] = 26125, - [SMALL_STATE(751)] = 26160, - [SMALL_STATE(752)] = 26195, - [SMALL_STATE(753)] = 26230, - [SMALL_STATE(754)] = 26265, - [SMALL_STATE(755)] = 26300, - [SMALL_STATE(756)] = 26335, - [SMALL_STATE(757)] = 26370, - [SMALL_STATE(758)] = 26405, - [SMALL_STATE(759)] = 26440, - [SMALL_STATE(760)] = 26475, - [SMALL_STATE(761)] = 26510, - [SMALL_STATE(762)] = 26545, - [SMALL_STATE(763)] = 26577, - [SMALL_STATE(764)] = 26602, - [SMALL_STATE(765)] = 26627, - [SMALL_STATE(766)] = 26652, - [SMALL_STATE(767)] = 26665, - [SMALL_STATE(768)] = 26678, - [SMALL_STATE(769)] = 26691, - [SMALL_STATE(770)] = 26702, - [SMALL_STATE(771)] = 26715, - [SMALL_STATE(772)] = 26728, - [SMALL_STATE(773)] = 26738, - [SMALL_STATE(774)] = 26748, - [SMALL_STATE(775)] = 26758, - [SMALL_STATE(776)] = 26768, - [SMALL_STATE(777)] = 26778, - [SMALL_STATE(778)] = 26788, - [SMALL_STATE(779)] = 26798, - [SMALL_STATE(780)] = 26808, - [SMALL_STATE(781)] = 26818, - [SMALL_STATE(782)] = 26828, - [SMALL_STATE(783)] = 26836, - [SMALL_STATE(784)] = 26844, - [SMALL_STATE(785)] = 26854, - [SMALL_STATE(786)] = 26862, - [SMALL_STATE(787)] = 26872, - [SMALL_STATE(788)] = 26882, - [SMALL_STATE(789)] = 26892, - [SMALL_STATE(790)] = 26902, - [SMALL_STATE(791)] = 26912, - [SMALL_STATE(792)] = 26922, - [SMALL_STATE(793)] = 26932, - [SMALL_STATE(794)] = 26942, - [SMALL_STATE(795)] = 26952, - [SMALL_STATE(796)] = 26962, - [SMALL_STATE(797)] = 26972, - [SMALL_STATE(798)] = 26982, - [SMALL_STATE(799)] = 26992, - [SMALL_STATE(800)] = 26999, - [SMALL_STATE(801)] = 27006, - [SMALL_STATE(802)] = 27013, - [SMALL_STATE(803)] = 27020, - [SMALL_STATE(804)] = 27027, - [SMALL_STATE(805)] = 27034, - [SMALL_STATE(806)] = 27041, - [SMALL_STATE(807)] = 27048, - [SMALL_STATE(808)] = 27055, - [SMALL_STATE(809)] = 27062, - [SMALL_STATE(810)] = 27069, - [SMALL_STATE(811)] = 27076, - [SMALL_STATE(812)] = 27083, - [SMALL_STATE(813)] = 27090, - [SMALL_STATE(814)] = 27097, - [SMALL_STATE(815)] = 27104, - [SMALL_STATE(816)] = 27111, - [SMALL_STATE(817)] = 27118, - [SMALL_STATE(818)] = 27125, - [SMALL_STATE(819)] = 27132, - [SMALL_STATE(820)] = 27139, - [SMALL_STATE(821)] = 27146, - [SMALL_STATE(822)] = 27153, - [SMALL_STATE(823)] = 27160, - [SMALL_STATE(824)] = 27167, - [SMALL_STATE(825)] = 27174, - [SMALL_STATE(826)] = 27181, - [SMALL_STATE(827)] = 27188, - [SMALL_STATE(828)] = 27195, - [SMALL_STATE(829)] = 27202, - [SMALL_STATE(830)] = 27209, - [SMALL_STATE(831)] = 27216, - [SMALL_STATE(832)] = 27223, - [SMALL_STATE(833)] = 27230, - [SMALL_STATE(834)] = 27237, - [SMALL_STATE(835)] = 27244, - [SMALL_STATE(836)] = 27251, - [SMALL_STATE(837)] = 27258, - [SMALL_STATE(838)] = 27265, - [SMALL_STATE(839)] = 27272, - [SMALL_STATE(840)] = 27279, - [SMALL_STATE(841)] = 27286, - [SMALL_STATE(842)] = 27293, - [SMALL_STATE(843)] = 27300, - [SMALL_STATE(844)] = 27307, - [SMALL_STATE(845)] = 27314, - [SMALL_STATE(846)] = 27321, - [SMALL_STATE(847)] = 27328, - [SMALL_STATE(848)] = 27335, - [SMALL_STATE(849)] = 27342, - [SMALL_STATE(850)] = 27349, - [SMALL_STATE(851)] = 27356, - [SMALL_STATE(852)] = 27363, - [SMALL_STATE(853)] = 27370, - [SMALL_STATE(854)] = 27377, - [SMALL_STATE(855)] = 27384, - [SMALL_STATE(856)] = 27391, - [SMALL_STATE(857)] = 27398, - [SMALL_STATE(858)] = 27405, - [SMALL_STATE(859)] = 27412, - [SMALL_STATE(860)] = 27419, - [SMALL_STATE(861)] = 27426, - [SMALL_STATE(862)] = 27433, - [SMALL_STATE(863)] = 27440, - [SMALL_STATE(864)] = 27447, - [SMALL_STATE(865)] = 27454, - [SMALL_STATE(866)] = 27461, - [SMALL_STATE(867)] = 27468, - [SMALL_STATE(868)] = 27475, - [SMALL_STATE(869)] = 27482, - [SMALL_STATE(870)] = 27489, - [SMALL_STATE(871)] = 27496, - [SMALL_STATE(872)] = 27503, - [SMALL_STATE(873)] = 27510, - [SMALL_STATE(874)] = 27517, - [SMALL_STATE(875)] = 27524, - [SMALL_STATE(876)] = 27531, - [SMALL_STATE(877)] = 27538, - [SMALL_STATE(878)] = 27545, - [SMALL_STATE(879)] = 27552, - [SMALL_STATE(880)] = 27559, - [SMALL_STATE(881)] = 27566, - [SMALL_STATE(882)] = 27573, - [SMALL_STATE(883)] = 27580, - [SMALL_STATE(884)] = 27587, - [SMALL_STATE(885)] = 27594, - [SMALL_STATE(886)] = 27601, - [SMALL_STATE(887)] = 27608, - [SMALL_STATE(888)] = 27615, - [SMALL_STATE(889)] = 27622, - [SMALL_STATE(890)] = 27629, - [SMALL_STATE(891)] = 27636, - [SMALL_STATE(892)] = 27643, - [SMALL_STATE(893)] = 27650, - [SMALL_STATE(894)] = 27657, - [SMALL_STATE(895)] = 27664, - [SMALL_STATE(896)] = 27671, - [SMALL_STATE(897)] = 27678, - [SMALL_STATE(898)] = 27685, - [SMALL_STATE(899)] = 27692, - [SMALL_STATE(900)] = 27699, - [SMALL_STATE(901)] = 27706, - [SMALL_STATE(902)] = 27713, - [SMALL_STATE(903)] = 27720, - [SMALL_STATE(904)] = 27727, - [SMALL_STATE(905)] = 27734, - [SMALL_STATE(906)] = 27741, - [SMALL_STATE(907)] = 27748, - [SMALL_STATE(908)] = 27755, - [SMALL_STATE(909)] = 27762, - [SMALL_STATE(910)] = 27769, - [SMALL_STATE(911)] = 27776, - [SMALL_STATE(912)] = 27783, - [SMALL_STATE(913)] = 27790, - [SMALL_STATE(914)] = 27797, - [SMALL_STATE(915)] = 27804, - [SMALL_STATE(916)] = 27811, - [SMALL_STATE(917)] = 27818, - [SMALL_STATE(918)] = 27825, - [SMALL_STATE(919)] = 27832, - [SMALL_STATE(920)] = 27839, - [SMALL_STATE(921)] = 27846, - [SMALL_STATE(922)] = 27853, - [SMALL_STATE(923)] = 27860, - [SMALL_STATE(924)] = 27867, - [SMALL_STATE(925)] = 27874, - [SMALL_STATE(926)] = 27881, - [SMALL_STATE(927)] = 27888, - [SMALL_STATE(928)] = 27895, - [SMALL_STATE(929)] = 27902, - [SMALL_STATE(930)] = 27909, - [SMALL_STATE(931)] = 27916, - [SMALL_STATE(932)] = 27923, - [SMALL_STATE(933)] = 27930, - [SMALL_STATE(934)] = 27937, - [SMALL_STATE(935)] = 27944, - [SMALL_STATE(936)] = 27951, - [SMALL_STATE(937)] = 27958, - [SMALL_STATE(938)] = 27965, - [SMALL_STATE(939)] = 27972, - [SMALL_STATE(940)] = 27979, - [SMALL_STATE(941)] = 27986, - [SMALL_STATE(942)] = 27993, - [SMALL_STATE(943)] = 28000, - [SMALL_STATE(944)] = 28007, - [SMALL_STATE(945)] = 28014, - [SMALL_STATE(946)] = 28021, - [SMALL_STATE(947)] = 28028, - [SMALL_STATE(948)] = 28035, - [SMALL_STATE(949)] = 28042, - [SMALL_STATE(950)] = 28049, - [SMALL_STATE(951)] = 28056, - [SMALL_STATE(952)] = 28063, - [SMALL_STATE(953)] = 28070, - [SMALL_STATE(954)] = 28077, - [SMALL_STATE(955)] = 28084, - [SMALL_STATE(956)] = 28091, - [SMALL_STATE(957)] = 28098, - [SMALL_STATE(958)] = 28105, - [SMALL_STATE(959)] = 28112, - [SMALL_STATE(960)] = 28119, - [SMALL_STATE(961)] = 28126, - [SMALL_STATE(962)] = 28133, - [SMALL_STATE(963)] = 28140, - [SMALL_STATE(964)] = 28147, - [SMALL_STATE(965)] = 28154, - [SMALL_STATE(966)] = 28161, - [SMALL_STATE(967)] = 28168, - [SMALL_STATE(968)] = 28175, - [SMALL_STATE(969)] = 28182, - [SMALL_STATE(970)] = 28189, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(118), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(558), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(336), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(336), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(339), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(453), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(227), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(223), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(881), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(487), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(568), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(213), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(567), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(915), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(916), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(590), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(918), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(919), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(966), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(796), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(805), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(767), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(788), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(127), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(119), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(233), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(210), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(556), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(485), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(232), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(882), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(883), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(623), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(885), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(886), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(962), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(773), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(929), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(778), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(135), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(120), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(489), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(409), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(409), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(407), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(454), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(197), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(196), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(828), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(598), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(195), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(484), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(949), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(950), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(482), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(952), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(953), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(970), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(787), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(865), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(793), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(142), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(121), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(218), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(219), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(516), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(565), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(221), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(528), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(901), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(902), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(596), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(904), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(905), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(964), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(794), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(811), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(797), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(141), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(123), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(231), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(181), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(637), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(229), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(554), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(932), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(933), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(562), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(935), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(936), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(968), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(791), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(833), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(781), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(161), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(122), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(202), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(201), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(584), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(515), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(200), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(499), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(859), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(860), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(639), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(862), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(863), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(960), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(792), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(924), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(774), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(154), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(124), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(214), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(215), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(626), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(216), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(514), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(941), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(942), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(498), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(944), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(945), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(969), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(777), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(928), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(798), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(164), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(132), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(237), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(239), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(585), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(238), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(587), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(922), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(923), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(588), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(925), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(926), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(967), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(780), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(884), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(786), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(173), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(341), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(558), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(336), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(336), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(339), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(453), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(227), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(223), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(213), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(767), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(788), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(127), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(435), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(580), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(728), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(728), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(729), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(451), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(193), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(192), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(191), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(767), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(776), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(173), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(233), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(210), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(232), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(778), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(135), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(377), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(489), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(409), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(409), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(407), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(454), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(197), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(196), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(195), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(793), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(142), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(231), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(181), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(229), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(781), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(161), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(134), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(858), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(667), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(555), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(613), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(829), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(830), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(570), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(831), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(832), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(958), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(779), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(767), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(160), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(878), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(601), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(597), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(851), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(850), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(578), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(847), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(835), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(801), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(789), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(315), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(478), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(548), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(512), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(369), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future, 2), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_future, 2), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 4), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 4), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(605), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(767), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(377), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(489), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(409), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(409), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(407), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(454), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(231), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(181), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(229), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(767), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(781), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(161), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(767), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(664), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(769), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1733] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), -}; - -#ifdef __cplusplus -extern "C" { -#endif -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_dust(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym_identifier, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/tree-sitter-dust/src/tree_sitter/parser.h b/tree-sitter-dust/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac1..0000000 --- a/tree-sitter-dust/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) id - LARGE_STATE_COUNT - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value, \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_