tree-sitter-cmake/src/parser.c
Uy Ha ef75262109 feat: put the body of commands into a body node
This is motivated by helping writing queries for indenting nodes easier
2023-06-28 13:14:23 +00:00

24711 lines
644 KiB
C

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 874
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 97
#define ALIAS_COUNT 0
#define TOKEN_COUNT 43
#define EXTERNAL_TOKEN_COUNT 3
#define FIELD_COUNT 0
#define MAX_ALIAS_SEQUENCE_LENGTH 7
#define PRODUCTION_ID_COUNT 1
enum {
sym__escape_identity = 1,
anon_sym_BSLASHt = 2,
anon_sym_BSLASHr = 3,
anon_sym_BSLASHn = 4,
anon_sym_SEMI = 5,
anon_sym_BSLASH_SEMI = 6,
aux_sym_variable_token1 = 7,
anon_sym_DOLLAR = 8,
anon_sym_LBRACE = 9,
anon_sym_RBRACE = 10,
anon_sym_ENV = 11,
anon_sym_CACHE = 12,
anon_sym_LT = 13,
anon_sym_GT = 14,
anon_sym_COLON = 15,
aux_sym__gen_exp_arguments_token1 = 16,
aux_sym__untrimmed_argument_token1 = 17,
anon_sym_LPAREN = 18,
anon_sym_RPAREN = 19,
anon_sym_DQUOTE = 20,
aux_sym__quoted_text_token1 = 21,
aux_sym__unquoted_text_token1 = 22,
aux_sym_if_command_token1 = 23,
aux_sym_endwhile_command_token1 = 24,
sym_if = 25,
sym_elseif = 26,
sym_else = 27,
sym_endif = 28,
sym_foreach = 29,
sym_endforeach = 30,
sym_while = 31,
sym_endwhile = 32,
sym_function = 33,
sym_endfunction = 34,
sym_macro = 35,
sym_endmacro = 36,
sym_block = 37,
sym_endblock = 38,
sym_identifier = 39,
sym_bracket_argument = 40,
sym_bracket_comment = 41,
sym_line_comment = 42,
sym_source_file = 43,
sym_escape_sequence = 44,
sym__escape_encoded = 45,
sym__escape_semicolon = 46,
sym_variable = 47,
sym_variable_ref = 48,
sym_normal_var = 49,
sym_env_var = 50,
sym_cache_var = 51,
sym_gen_exp = 52,
sym__gen_exp_content = 53,
sym__gen_exp_arguments = 54,
sym_argument = 55,
sym__untrimmed_argument = 56,
sym__paren_argument = 57,
sym_quoted_argument = 58,
sym_quoted_element = 59,
sym__quoted_text = 60,
sym_unquoted_argument = 61,
sym__unquoted_text = 62,
sym_body = 63,
sym_if_command = 64,
sym_elseif_command = 65,
sym_else_command = 66,
sym_endif_command = 67,
sym_if_condition = 68,
sym_foreach_command = 69,
sym_endforeach_command = 70,
sym_foreach_loop = 71,
sym_while_command = 72,
sym_endwhile_command = 73,
sym_while_loop = 74,
sym_function_command = 75,
sym_endfunction_command = 76,
sym_function_def = 77,
sym_macro_command = 78,
sym_endmacro_command = 79,
sym_macro_def = 80,
sym_block_command = 81,
sym_endblock_command = 82,
sym_block_def = 83,
sym_normal_command = 84,
sym__command_invocation = 85,
sym__untrimmed_command_invocation = 86,
aux_sym_source_file_repeat1 = 87,
aux_sym_variable_repeat1 = 88,
aux_sym__gen_exp_arguments_repeat1 = 89,
aux_sym__paren_argument_repeat1 = 90,
aux_sym_quoted_element_repeat1 = 91,
aux_sym__quoted_text_repeat1 = 92,
aux_sym_unquoted_argument_repeat1 = 93,
aux_sym__unquoted_text_repeat1 = 94,
aux_sym_if_command_repeat1 = 95,
aux_sym_if_condition_repeat1 = 96,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym__escape_identity] = "_escape_identity",
[anon_sym_BSLASHt] = "\\t",
[anon_sym_BSLASHr] = "\\r",
[anon_sym_BSLASHn] = "\\n",
[anon_sym_SEMI] = ";",
[anon_sym_BSLASH_SEMI] = "\\;",
[aux_sym_variable_token1] = "variable_token1",
[anon_sym_DOLLAR] = "$",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_ENV] = "ENV",
[anon_sym_CACHE] = "CACHE",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_COLON] = ":",
[aux_sym__gen_exp_arguments_token1] = "_gen_exp_arguments_token1",
[aux_sym__untrimmed_argument_token1] = "_untrimmed_argument_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[anon_sym_DQUOTE] = "\"",
[aux_sym__quoted_text_token1] = "_quoted_text_token1",
[aux_sym__unquoted_text_token1] = "_unquoted_text_token1",
[aux_sym_if_command_token1] = "if_command_token1",
[aux_sym_endwhile_command_token1] = "endwhile_command_token1",
[sym_if] = "if",
[sym_elseif] = "elseif",
[sym_else] = "else",
[sym_endif] = "endif",
[sym_foreach] = "foreach",
[sym_endforeach] = "endforeach",
[sym_while] = "while",
[sym_endwhile] = "endwhile",
[sym_function] = "function",
[sym_endfunction] = "endfunction",
[sym_macro] = "macro",
[sym_endmacro] = "endmacro",
[sym_block] = "block",
[sym_endblock] = "endblock",
[sym_identifier] = "identifier",
[sym_bracket_argument] = "bracket_argument",
[sym_bracket_comment] = "bracket_comment",
[sym_line_comment] = "line_comment",
[sym_source_file] = "source_file",
[sym_escape_sequence] = "escape_sequence",
[sym__escape_encoded] = "_escape_encoded",
[sym__escape_semicolon] = "_escape_semicolon",
[sym_variable] = "variable",
[sym_variable_ref] = "variable_ref",
[sym_normal_var] = "normal_var",
[sym_env_var] = "env_var",
[sym_cache_var] = "cache_var",
[sym_gen_exp] = "gen_exp",
[sym__gen_exp_content] = "_gen_exp_content",
[sym__gen_exp_arguments] = "_gen_exp_arguments",
[sym_argument] = "argument",
[sym__untrimmed_argument] = "_untrimmed_argument",
[sym__paren_argument] = "_paren_argument",
[sym_quoted_argument] = "quoted_argument",
[sym_quoted_element] = "quoted_element",
[sym__quoted_text] = "_quoted_text",
[sym_unquoted_argument] = "unquoted_argument",
[sym__unquoted_text] = "_unquoted_text",
[sym_body] = "body",
[sym_if_command] = "if_command",
[sym_elseif_command] = "elseif_command",
[sym_else_command] = "else_command",
[sym_endif_command] = "endif_command",
[sym_if_condition] = "if_condition",
[sym_foreach_command] = "foreach_command",
[sym_endforeach_command] = "endforeach_command",
[sym_foreach_loop] = "foreach_loop",
[sym_while_command] = "while_command",
[sym_endwhile_command] = "endwhile_command",
[sym_while_loop] = "while_loop",
[sym_function_command] = "function_command",
[sym_endfunction_command] = "endfunction_command",
[sym_function_def] = "function_def",
[sym_macro_command] = "macro_command",
[sym_endmacro_command] = "endmacro_command",
[sym_macro_def] = "macro_def",
[sym_block_command] = "block_command",
[sym_endblock_command] = "endblock_command",
[sym_block_def] = "block_def",
[sym_normal_command] = "normal_command",
[sym__command_invocation] = "_command_invocation",
[sym__untrimmed_command_invocation] = "_untrimmed_command_invocation",
[aux_sym_source_file_repeat1] = "source_file_repeat1",
[aux_sym_variable_repeat1] = "variable_repeat1",
[aux_sym__gen_exp_arguments_repeat1] = "_gen_exp_arguments_repeat1",
[aux_sym__paren_argument_repeat1] = "_paren_argument_repeat1",
[aux_sym_quoted_element_repeat1] = "quoted_element_repeat1",
[aux_sym__quoted_text_repeat1] = "_quoted_text_repeat1",
[aux_sym_unquoted_argument_repeat1] = "unquoted_argument_repeat1",
[aux_sym__unquoted_text_repeat1] = "_unquoted_text_repeat1",
[aux_sym_if_command_repeat1] = "if_command_repeat1",
[aux_sym_if_condition_repeat1] = "if_condition_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym__escape_identity] = sym__escape_identity,
[anon_sym_BSLASHt] = anon_sym_BSLASHt,
[anon_sym_BSLASHr] = anon_sym_BSLASHr,
[anon_sym_BSLASHn] = anon_sym_BSLASHn,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_BSLASH_SEMI] = anon_sym_BSLASH_SEMI,
[aux_sym_variable_token1] = aux_sym_variable_token1,
[anon_sym_DOLLAR] = anon_sym_DOLLAR,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_ENV] = anon_sym_ENV,
[anon_sym_CACHE] = anon_sym_CACHE,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_COLON] = anon_sym_COLON,
[aux_sym__gen_exp_arguments_token1] = aux_sym__gen_exp_arguments_token1,
[aux_sym__untrimmed_argument_token1] = aux_sym__untrimmed_argument_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[anon_sym_DQUOTE] = anon_sym_DQUOTE,
[aux_sym__quoted_text_token1] = aux_sym__quoted_text_token1,
[aux_sym__unquoted_text_token1] = aux_sym__unquoted_text_token1,
[aux_sym_if_command_token1] = aux_sym_if_command_token1,
[aux_sym_endwhile_command_token1] = aux_sym_endwhile_command_token1,
[sym_if] = sym_if,
[sym_elseif] = sym_elseif,
[sym_else] = sym_else,
[sym_endif] = sym_endif,
[sym_foreach] = sym_foreach,
[sym_endforeach] = sym_endforeach,
[sym_while] = sym_while,
[sym_endwhile] = sym_endwhile,
[sym_function] = sym_function,
[sym_endfunction] = sym_endfunction,
[sym_macro] = sym_macro,
[sym_endmacro] = sym_endmacro,
[sym_block] = sym_block,
[sym_endblock] = sym_endblock,
[sym_identifier] = sym_identifier,
[sym_bracket_argument] = sym_bracket_argument,
[sym_bracket_comment] = sym_bracket_comment,
[sym_line_comment] = sym_line_comment,
[sym_source_file] = sym_source_file,
[sym_escape_sequence] = sym_escape_sequence,
[sym__escape_encoded] = sym__escape_encoded,
[sym__escape_semicolon] = sym__escape_semicolon,
[sym_variable] = sym_variable,
[sym_variable_ref] = sym_variable_ref,
[sym_normal_var] = sym_normal_var,
[sym_env_var] = sym_env_var,
[sym_cache_var] = sym_cache_var,
[sym_gen_exp] = sym_gen_exp,
[sym__gen_exp_content] = sym__gen_exp_content,
[sym__gen_exp_arguments] = sym__gen_exp_arguments,
[sym_argument] = sym_argument,
[sym__untrimmed_argument] = sym__untrimmed_argument,
[sym__paren_argument] = sym__paren_argument,
[sym_quoted_argument] = sym_quoted_argument,
[sym_quoted_element] = sym_quoted_element,
[sym__quoted_text] = sym__quoted_text,
[sym_unquoted_argument] = sym_unquoted_argument,
[sym__unquoted_text] = sym__unquoted_text,
[sym_body] = sym_body,
[sym_if_command] = sym_if_command,
[sym_elseif_command] = sym_elseif_command,
[sym_else_command] = sym_else_command,
[sym_endif_command] = sym_endif_command,
[sym_if_condition] = sym_if_condition,
[sym_foreach_command] = sym_foreach_command,
[sym_endforeach_command] = sym_endforeach_command,
[sym_foreach_loop] = sym_foreach_loop,
[sym_while_command] = sym_while_command,
[sym_endwhile_command] = sym_endwhile_command,
[sym_while_loop] = sym_while_loop,
[sym_function_command] = sym_function_command,
[sym_endfunction_command] = sym_endfunction_command,
[sym_function_def] = sym_function_def,
[sym_macro_command] = sym_macro_command,
[sym_endmacro_command] = sym_endmacro_command,
[sym_macro_def] = sym_macro_def,
[sym_block_command] = sym_block_command,
[sym_endblock_command] = sym_endblock_command,
[sym_block_def] = sym_block_def,
[sym_normal_command] = sym_normal_command,
[sym__command_invocation] = sym__command_invocation,
[sym__untrimmed_command_invocation] = sym__untrimmed_command_invocation,
[aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1,
[aux_sym_variable_repeat1] = aux_sym_variable_repeat1,
[aux_sym__gen_exp_arguments_repeat1] = aux_sym__gen_exp_arguments_repeat1,
[aux_sym__paren_argument_repeat1] = aux_sym__paren_argument_repeat1,
[aux_sym_quoted_element_repeat1] = aux_sym_quoted_element_repeat1,
[aux_sym__quoted_text_repeat1] = aux_sym__quoted_text_repeat1,
[aux_sym_unquoted_argument_repeat1] = aux_sym_unquoted_argument_repeat1,
[aux_sym__unquoted_text_repeat1] = aux_sym__unquoted_text_repeat1,
[aux_sym_if_command_repeat1] = aux_sym_if_command_repeat1,
[aux_sym_if_condition_repeat1] = aux_sym_if_condition_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym__escape_identity] = {
.visible = false,
.named = true,
},
[anon_sym_BSLASHt] = {
.visible = true,
.named = false,
},
[anon_sym_BSLASHr] = {
.visible = true,
.named = false,
},
[anon_sym_BSLASHn] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_BSLASH_SEMI] = {
.visible = true,
.named = false,
},
[aux_sym_variable_token1] = {
.visible = false,
.named = false,
},
[anon_sym_DOLLAR] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_ENV] = {
.visible = true,
.named = false,
},
[anon_sym_CACHE] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[aux_sym__gen_exp_arguments_token1] = {
.visible = false,
.named = false,
},
[aux_sym__untrimmed_argument_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_DQUOTE] = {
.visible = true,
.named = false,
},
[aux_sym__quoted_text_token1] = {
.visible = false,
.named = false,
},
[aux_sym__unquoted_text_token1] = {
.visible = false,
.named = false,
},
[aux_sym_if_command_token1] = {
.visible = false,
.named = false,
},
[aux_sym_endwhile_command_token1] = {
.visible = false,
.named = false,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_elseif] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_endif] = {
.visible = true,
.named = true,
},
[sym_foreach] = {
.visible = true,
.named = true,
},
[sym_endforeach] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_endwhile] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_endfunction] = {
.visible = true,
.named = true,
},
[sym_macro] = {
.visible = true,
.named = true,
},
[sym_endmacro] = {
.visible = true,
.named = true,
},
[sym_block] = {
.visible = true,
.named = true,
},
[sym_endblock] = {
.visible = true,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym_bracket_argument] = {
.visible = true,
.named = true,
},
[sym_bracket_comment] = {
.visible = true,
.named = true,
},
[sym_line_comment] = {
.visible = true,
.named = true,
},
[sym_source_file] = {
.visible = true,
.named = true,
},
[sym_escape_sequence] = {
.visible = true,
.named = true,
},
[sym__escape_encoded] = {
.visible = false,
.named = true,
},
[sym__escape_semicolon] = {
.visible = false,
.named = true,
},
[sym_variable] = {
.visible = true,
.named = true,
},
[sym_variable_ref] = {
.visible = true,
.named = true,
},
[sym_normal_var] = {
.visible = true,
.named = true,
},
[sym_env_var] = {
.visible = true,
.named = true,
},
[sym_cache_var] = {
.visible = true,
.named = true,
},
[sym_gen_exp] = {
.visible = true,
.named = true,
},
[sym__gen_exp_content] = {
.visible = false,
.named = true,
},
[sym__gen_exp_arguments] = {
.visible = false,
.named = true,
},
[sym_argument] = {
.visible = true,
.named = true,
},
[sym__untrimmed_argument] = {
.visible = false,
.named = true,
},
[sym__paren_argument] = {
.visible = false,
.named = true,
},
[sym_quoted_argument] = {
.visible = true,
.named = true,
},
[sym_quoted_element] = {
.visible = true,
.named = true,
},
[sym__quoted_text] = {
.visible = false,
.named = true,
},
[sym_unquoted_argument] = {
.visible = true,
.named = true,
},
[sym__unquoted_text] = {
.visible = false,
.named = true,
},
[sym_body] = {
.visible = true,
.named = true,
},
[sym_if_command] = {
.visible = true,
.named = true,
},
[sym_elseif_command] = {
.visible = true,
.named = true,
},
[sym_else_command] = {
.visible = true,
.named = true,
},
[sym_endif_command] = {
.visible = true,
.named = true,
},
[sym_if_condition] = {
.visible = true,
.named = true,
},
[sym_foreach_command] = {
.visible = true,
.named = true,
},
[sym_endforeach_command] = {
.visible = true,
.named = true,
},
[sym_foreach_loop] = {
.visible = true,
.named = true,
},
[sym_while_command] = {
.visible = true,
.named = true,
},
[sym_endwhile_command] = {
.visible = true,
.named = true,
},
[sym_while_loop] = {
.visible = true,
.named = true,
},
[sym_function_command] = {
.visible = true,
.named = true,
},
[sym_endfunction_command] = {
.visible = true,
.named = true,
},
[sym_function_def] = {
.visible = true,
.named = true,
},
[sym_macro_command] = {
.visible = true,
.named = true,
},
[sym_endmacro_command] = {
.visible = true,
.named = true,
},
[sym_macro_def] = {
.visible = true,
.named = true,
},
[sym_block_command] = {
.visible = true,
.named = true,
},
[sym_endblock_command] = {
.visible = true,
.named = true,
},
[sym_block_def] = {
.visible = true,
.named = true,
},
[sym_normal_command] = {
.visible = true,
.named = true,
},
[sym__command_invocation] = {
.visible = false,
.named = true,
},
[sym__untrimmed_command_invocation] = {
.visible = false,
.named = true,
},
[aux_sym_source_file_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_variable_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__gen_exp_arguments_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__paren_argument_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_quoted_element_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__quoted_text_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_unquoted_argument_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__unquoted_text_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_command_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_condition_repeat1] = {
.visible = false,
.named = false,
},
};
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] = 3,
[4] = 2,
[5] = 3,
[6] = 2,
[7] = 3,
[8] = 2,
[9] = 3,
[10] = 2,
[11] = 2,
[12] = 3,
[13] = 2,
[14] = 3,
[15] = 3,
[16] = 16,
[17] = 17,
[18] = 18,
[19] = 19,
[20] = 20,
[21] = 21,
[22] = 22,
[23] = 23,
[24] = 24,
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
[29] = 29,
[30] = 30,
[31] = 20,
[32] = 32,
[33] = 33,
[34] = 34,
[35] = 17,
[36] = 36,
[37] = 32,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
[48] = 20,
[49] = 22,
[50] = 24,
[51] = 51,
[52] = 26,
[53] = 53,
[54] = 28,
[55] = 43,
[56] = 56,
[57] = 57,
[58] = 32,
[59] = 59,
[60] = 60,
[61] = 33,
[62] = 62,
[63] = 63,
[64] = 34,
[65] = 65,
[66] = 66,
[67] = 17,
[68] = 68,
[69] = 69,
[70] = 36,
[71] = 22,
[72] = 24,
[73] = 73,
[74] = 38,
[75] = 75,
[76] = 39,
[77] = 26,
[78] = 40,
[79] = 41,
[80] = 42,
[81] = 43,
[82] = 44,
[83] = 45,
[84] = 46,
[85] = 20,
[86] = 22,
[87] = 24,
[88] = 26,
[89] = 28,
[90] = 30,
[91] = 32,
[92] = 33,
[93] = 34,
[94] = 36,
[95] = 95,
[96] = 38,
[97] = 39,
[98] = 40,
[99] = 41,
[100] = 42,
[101] = 101,
[102] = 43,
[103] = 44,
[104] = 104,
[105] = 45,
[106] = 45,
[107] = 46,
[108] = 108,
[109] = 20,
[110] = 110,
[111] = 22,
[112] = 112,
[113] = 42,
[114] = 114,
[115] = 24,
[116] = 28,
[117] = 26,
[118] = 118,
[119] = 119,
[120] = 28,
[121] = 121,
[122] = 122,
[123] = 30,
[124] = 30,
[125] = 32,
[126] = 32,
[127] = 46,
[128] = 45,
[129] = 44,
[130] = 33,
[131] = 43,
[132] = 34,
[133] = 42,
[134] = 17,
[135] = 41,
[136] = 40,
[137] = 39,
[138] = 33,
[139] = 34,
[140] = 17,
[141] = 36,
[142] = 38,
[143] = 38,
[144] = 39,
[145] = 40,
[146] = 41,
[147] = 36,
[148] = 17,
[149] = 34,
[150] = 33,
[151] = 42,
[152] = 32,
[153] = 30,
[154] = 28,
[155] = 26,
[156] = 156,
[157] = 24,
[158] = 158,
[159] = 22,
[160] = 36,
[161] = 44,
[162] = 20,
[163] = 43,
[164] = 44,
[165] = 45,
[166] = 46,
[167] = 45,
[168] = 38,
[169] = 39,
[170] = 44,
[171] = 40,
[172] = 41,
[173] = 46,
[174] = 20,
[175] = 30,
[176] = 22,
[177] = 24,
[178] = 42,
[179] = 41,
[180] = 26,
[181] = 28,
[182] = 40,
[183] = 39,
[184] = 38,
[185] = 43,
[186] = 36,
[187] = 17,
[188] = 34,
[189] = 33,
[190] = 46,
[191] = 30,
[192] = 192,
[193] = 193,
[194] = 194,
[195] = 194,
[196] = 196,
[197] = 197,
[198] = 198,
[199] = 199,
[200] = 194,
[201] = 196,
[202] = 197,
[203] = 192,
[204] = 193,
[205] = 198,
[206] = 193,
[207] = 196,
[208] = 199,
[209] = 199,
[210] = 192,
[211] = 194,
[212] = 199,
[213] = 193,
[214] = 196,
[215] = 194,
[216] = 197,
[217] = 197,
[218] = 192,
[219] = 198,
[220] = 194,
[221] = 192,
[222] = 193,
[223] = 192,
[224] = 199,
[225] = 199,
[226] = 193,
[227] = 227,
[228] = 199,
[229] = 192,
[230] = 196,
[231] = 198,
[232] = 197,
[233] = 197,
[234] = 196,
[235] = 194,
[236] = 198,
[237] = 198,
[238] = 198,
[239] = 196,
[240] = 197,
[241] = 241,
[242] = 242,
[243] = 243,
[244] = 242,
[245] = 245,
[246] = 242,
[247] = 247,
[248] = 248,
[249] = 242,
[250] = 242,
[251] = 242,
[252] = 252,
[253] = 253,
[254] = 253,
[255] = 253,
[256] = 252,
[257] = 253,
[258] = 252,
[259] = 253,
[260] = 252,
[261] = 252,
[262] = 253,
[263] = 253,
[264] = 252,
[265] = 252,
[266] = 266,
[267] = 266,
[268] = 268,
[269] = 268,
[270] = 266,
[271] = 268,
[272] = 266,
[273] = 268,
[274] = 268,
[275] = 268,
[276] = 268,
[277] = 266,
[278] = 266,
[279] = 266,
[280] = 245,
[281] = 243,
[282] = 282,
[283] = 245,
[284] = 282,
[285] = 243,
[286] = 282,
[287] = 282,
[288] = 288,
[289] = 243,
[290] = 245,
[291] = 243,
[292] = 245,
[293] = 293,
[294] = 294,
[295] = 295,
[296] = 296,
[297] = 297,
[298] = 298,
[299] = 298,
[300] = 296,
[301] = 296,
[302] = 298,
[303] = 296,
[304] = 295,
[305] = 295,
[306] = 296,
[307] = 295,
[308] = 295,
[309] = 298,
[310] = 295,
[311] = 298,
[312] = 296,
[313] = 313,
[314] = 296,
[315] = 298,
[316] = 298,
[317] = 295,
[318] = 318,
[319] = 294,
[320] = 320,
[321] = 321,
[322] = 322,
[323] = 323,
[324] = 324,
[325] = 325,
[326] = 326,
[327] = 327,
[328] = 328,
[329] = 329,
[330] = 330,
[331] = 331,
[332] = 294,
[333] = 333,
[334] = 294,
[335] = 335,
[336] = 336,
[337] = 337,
[338] = 338,
[339] = 339,
[340] = 340,
[341] = 341,
[342] = 342,
[343] = 343,
[344] = 344,
[345] = 345,
[346] = 346,
[347] = 347,
[348] = 348,
[349] = 349,
[350] = 350,
[351] = 351,
[352] = 352,
[353] = 353,
[354] = 354,
[355] = 355,
[356] = 356,
[357] = 357,
[358] = 358,
[359] = 359,
[360] = 318,
[361] = 361,
[362] = 362,
[363] = 363,
[364] = 364,
[365] = 294,
[366] = 366,
[367] = 367,
[368] = 368,
[369] = 369,
[370] = 370,
[371] = 371,
[372] = 372,
[373] = 373,
[374] = 374,
[375] = 321,
[376] = 376,
[377] = 327,
[378] = 322,
[379] = 325,
[380] = 330,
[381] = 320,
[382] = 323,
[383] = 328,
[384] = 329,
[385] = 331,
[386] = 341,
[387] = 340,
[388] = 362,
[389] = 389,
[390] = 358,
[391] = 333,
[392] = 340,
[393] = 362,
[394] = 363,
[395] = 364,
[396] = 359,
[397] = 363,
[398] = 346,
[399] = 364,
[400] = 349,
[401] = 373,
[402] = 335,
[403] = 336,
[404] = 337,
[405] = 338,
[406] = 339,
[407] = 361,
[408] = 341,
[409] = 342,
[410] = 343,
[411] = 344,
[412] = 345,
[413] = 346,
[414] = 347,
[415] = 348,
[416] = 349,
[417] = 350,
[418] = 350,
[419] = 351,
[420] = 352,
[421] = 353,
[422] = 354,
[423] = 355,
[424] = 351,
[425] = 352,
[426] = 358,
[427] = 333,
[428] = 340,
[429] = 362,
[430] = 363,
[431] = 364,
[432] = 359,
[433] = 345,
[434] = 373,
[435] = 335,
[436] = 336,
[437] = 337,
[438] = 338,
[439] = 339,
[440] = 361,
[441] = 341,
[442] = 342,
[443] = 343,
[444] = 344,
[445] = 345,
[446] = 346,
[447] = 347,
[448] = 348,
[449] = 349,
[450] = 350,
[451] = 351,
[452] = 352,
[453] = 353,
[454] = 354,
[455] = 355,
[456] = 358,
[457] = 333,
[458] = 340,
[459] = 362,
[460] = 363,
[461] = 364,
[462] = 344,
[463] = 343,
[464] = 352,
[465] = 359,
[466] = 354,
[467] = 353,
[468] = 354,
[469] = 318,
[470] = 355,
[471] = 342,
[472] = 340,
[473] = 358,
[474] = 353,
[475] = 333,
[476] = 361,
[477] = 339,
[478] = 338,
[479] = 337,
[480] = 333,
[481] = 336,
[482] = 335,
[483] = 373,
[484] = 373,
[485] = 335,
[486] = 358,
[487] = 336,
[488] = 348,
[489] = 337,
[490] = 338,
[491] = 351,
[492] = 359,
[493] = 364,
[494] = 363,
[495] = 362,
[496] = 339,
[497] = 361,
[498] = 347,
[499] = 355,
[500] = 333,
[501] = 358,
[502] = 350,
[503] = 340,
[504] = 362,
[505] = 363,
[506] = 355,
[507] = 364,
[508] = 355,
[509] = 359,
[510] = 354,
[511] = 353,
[512] = 354,
[513] = 353,
[514] = 352,
[515] = 351,
[516] = 350,
[517] = 341,
[518] = 352,
[519] = 373,
[520] = 349,
[521] = 348,
[522] = 335,
[523] = 347,
[524] = 346,
[525] = 345,
[526] = 349,
[527] = 342,
[528] = 344,
[529] = 336,
[530] = 343,
[531] = 348,
[532] = 337,
[533] = 351,
[534] = 342,
[535] = 341,
[536] = 350,
[537] = 338,
[538] = 339,
[539] = 361,
[540] = 341,
[541] = 361,
[542] = 339,
[543] = 338,
[544] = 343,
[545] = 347,
[546] = 337,
[547] = 336,
[548] = 335,
[549] = 346,
[550] = 344,
[551] = 345,
[552] = 346,
[553] = 347,
[554] = 373,
[555] = 342,
[556] = 345,
[557] = 349,
[558] = 343,
[559] = 348,
[560] = 359,
[561] = 344,
[562] = 562,
[563] = 563,
[564] = 330,
[565] = 329,
[566] = 566,
[567] = 567,
[568] = 568,
[569] = 569,
[570] = 570,
[571] = 318,
[572] = 321,
[573] = 323,
[574] = 574,
[575] = 575,
[576] = 318,
[577] = 577,
[578] = 578,
[579] = 320,
[580] = 331,
[581] = 581,
[582] = 582,
[583] = 583,
[584] = 328,
[585] = 585,
[586] = 586,
[587] = 329,
[588] = 321,
[589] = 329,
[590] = 331,
[591] = 330,
[592] = 320,
[593] = 328,
[594] = 329,
[595] = 321,
[596] = 323,
[597] = 321,
[598] = 323,
[599] = 328,
[600] = 331,
[601] = 323,
[602] = 328,
[603] = 321,
[604] = 329,
[605] = 331,
[606] = 320,
[607] = 320,
[608] = 320,
[609] = 330,
[610] = 330,
[611] = 328,
[612] = 330,
[613] = 613,
[614] = 614,
[615] = 322,
[616] = 616,
[617] = 617,
[618] = 618,
[619] = 327,
[620] = 620,
[621] = 621,
[622] = 622,
[623] = 623,
[624] = 624,
[625] = 625,
[626] = 626,
[627] = 627,
[628] = 628,
[629] = 629,
[630] = 325,
[631] = 631,
[632] = 632,
[633] = 633,
[634] = 618,
[635] = 635,
[636] = 636,
[637] = 637,
[638] = 638,
[639] = 639,
[640] = 640,
[641] = 641,
[642] = 642,
[643] = 613,
[644] = 614,
[645] = 631,
[646] = 646,
[647] = 614,
[648] = 623,
[649] = 632,
[650] = 633,
[651] = 618,
[652] = 635,
[653] = 636,
[654] = 638,
[655] = 639,
[656] = 640,
[657] = 641,
[658] = 642,
[659] = 613,
[660] = 631,
[661] = 661,
[662] = 623,
[663] = 632,
[664] = 633,
[665] = 618,
[666] = 635,
[667] = 636,
[668] = 638,
[669] = 639,
[670] = 640,
[671] = 641,
[672] = 642,
[673] = 613,
[674] = 614,
[675] = 631,
[676] = 676,
[677] = 677,
[678] = 613,
[679] = 642,
[680] = 623,
[681] = 641,
[682] = 632,
[683] = 633,
[684] = 618,
[685] = 635,
[686] = 636,
[687] = 638,
[688] = 639,
[689] = 640,
[690] = 641,
[691] = 642,
[692] = 692,
[693] = 613,
[694] = 614,
[695] = 695,
[696] = 632,
[697] = 633,
[698] = 631,
[699] = 640,
[700] = 639,
[701] = 638,
[702] = 635,
[703] = 623,
[704] = 704,
[705] = 632,
[706] = 623,
[707] = 636,
[708] = 633,
[709] = 618,
[710] = 635,
[711] = 636,
[712] = 631,
[713] = 614,
[714] = 613,
[715] = 642,
[716] = 641,
[717] = 640,
[718] = 639,
[719] = 638,
[720] = 638,
[721] = 636,
[722] = 635,
[723] = 618,
[724] = 633,
[725] = 632,
[726] = 639,
[727] = 640,
[728] = 641,
[729] = 642,
[730] = 623,
[731] = 614,
[732] = 631,
[733] = 733,
[734] = 733,
[735] = 735,
[736] = 736,
[737] = 733,
[738] = 738,
[739] = 739,
[740] = 736,
[741] = 735,
[742] = 738,
[743] = 733,
[744] = 735,
[745] = 745,
[746] = 738,
[747] = 747,
[748] = 739,
[749] = 736,
[750] = 739,
[751] = 745,
[752] = 736,
[753] = 739,
[754] = 745,
[755] = 736,
[756] = 733,
[757] = 735,
[758] = 747,
[759] = 738,
[760] = 747,
[761] = 745,
[762] = 733,
[763] = 747,
[764] = 747,
[765] = 735,
[766] = 738,
[767] = 735,
[768] = 738,
[769] = 735,
[770] = 733,
[771] = 736,
[772] = 745,
[773] = 739,
[774] = 745,
[775] = 747,
[776] = 738,
[777] = 747,
[778] = 739,
[779] = 739,
[780] = 745,
[781] = 736,
[782] = 782,
[783] = 783,
[784] = 327,
[785] = 322,
[786] = 786,
[787] = 783,
[788] = 782,
[789] = 789,
[790] = 790,
[791] = 791,
[792] = 792,
[793] = 793,
[794] = 793,
[795] = 795,
[796] = 792,
[797] = 789,
[798] = 798,
[799] = 799,
[800] = 799,
[801] = 790,
[802] = 791,
[803] = 798,
[804] = 798,
[805] = 325,
[806] = 783,
[807] = 793,
[808] = 786,
[809] = 795,
[810] = 786,
[811] = 783,
[812] = 812,
[813] = 795,
[814] = 793,
[815] = 799,
[816] = 786,
[817] = 783,
[818] = 786,
[819] = 793,
[820] = 782,
[821] = 795,
[822] = 786,
[823] = 782,
[824] = 790,
[825] = 791,
[826] = 799,
[827] = 799,
[828] = 828,
[829] = 791,
[830] = 790,
[831] = 783,
[832] = 782,
[833] = 790,
[834] = 789,
[835] = 792,
[836] = 782,
[837] = 789,
[838] = 789,
[839] = 791,
[840] = 793,
[841] = 792,
[842] = 795,
[843] = 799,
[844] = 844,
[845] = 798,
[846] = 790,
[847] = 793,
[848] = 790,
[849] = 791,
[850] = 828,
[851] = 844,
[852] = 791,
[853] = 792,
[854] = 828,
[855] = 844,
[856] = 789,
[857] = 792,
[858] = 828,
[859] = 844,
[860] = 795,
[861] = 861,
[862] = 828,
[863] = 844,
[864] = 799,
[865] = 782,
[866] = 828,
[867] = 844,
[868] = 783,
[869] = 786,
[870] = 828,
[871] = 844,
[872] = 789,
[873] = 792,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(25);
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == '(') ADVANCE(43);
if (lookahead == ')') ADVANCE(44);
if (lookahead == ',') ADVANCE(41);
if (lookahead == ':') ADVANCE(40);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == '>') ADVANCE(39);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == ' ') ADVANCE(42);
if (lookahead == '\n' ||
lookahead == '\r') ADVANCE(42);
if (lookahead != 0 &&
lookahead != '#' &&
lookahead != '\'') ADVANCE(49);
END_STATE();
case 1:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == '(') ADVANCE(43);
if (lookahead == ')') ADVANCE(44);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (lookahead != 0 &&
lookahead != '#' &&
lookahead != '\'') ADVANCE(49);
END_STATE();
case 2:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == '(') ADVANCE(43);
if (lookahead == ')') ADVANCE(44);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (lookahead != 0 &&
lookahead != '#' &&
lookahead != '\'') ADVANCE(49);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ')') ADVANCE(44);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '\\') ADVANCE(13);
if (lookahead != 0 &&
lookahead != '#' &&
lookahead != '\'' &&
lookahead != '(') ADVANCE(49);
END_STATE();
case 4:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ',') ADVANCE(41);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == '>') ADVANCE(39);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead != 0 &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ',') ADVANCE(41);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '>') ADVANCE(39);
if (lookahead == '\\') ADVANCE(13);
if (lookahead != 0 &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 6:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == 'C') ADVANCE(47);
if (lookahead == 'E') ADVANCE(48);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead != 0) ADVANCE(46);
END_STATE();
case 7:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '>') ADVANCE(39);
if (lookahead == '\\') ADVANCE(13);
if (lookahead != 0 &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 8:
if (lookahead == '"') ADVANCE(45);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '\\') ADVANCE(13);
if (lookahead != 0) ADVANCE(46);
END_STATE();
case 9:
if (lookahead == '$') ADVANCE(33);
if (lookahead == '(') ADVANCE(43);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '}') ADVANCE(35);
if (lookahead == '\t' ||
lookahead == ' ') ADVANCE(53);
if (lookahead == '+' ||
('-' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(32);
END_STATE();
case 10:
if (lookahead == '$') ADVANCE(33);
if (lookahead == ')') ADVANCE(44);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
lookahead != '\'' &&
lookahead != '(') ADVANCE(49);
END_STATE();
case 11:
if (lookahead == '$') ADVANCE(33);
if (lookahead == ':') ADVANCE(40);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == '>') ADVANCE(39);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 12:
if (lookahead == '$') ADVANCE(33);
if (lookahead == ':') ADVANCE(40);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '>') ADVANCE(39);
if (lookahead == '\\') ADVANCE(13);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 13:
if (lookahead == ';') ADVANCE(31);
if (lookahead == 'n') ADVANCE(29);
if (lookahead == 'r') ADVANCE(28);
if (lookahead == 't') ADVANCE(27);
if (lookahead != 0 &&
(lookahead < '0' || '9' < lookahead) &&
(lookahead < 'A' || 'Z' < lookahead) &&
(lookahead < 'a' || 'z' < lookahead)) ADVANCE(26);
END_STATE();
case 14:
if (lookahead == 'C') ADVANCE(16);
END_STATE();
case 15:
if (lookahead == 'E') ADVANCE(37);
END_STATE();
case 16:
if (lookahead == 'H') ADVANCE(15);
END_STATE();
case 17:
if (lookahead == 'V') ADVANCE(36);
END_STATE();
case 18:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(113);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 19:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(120);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 20:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(122);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 21:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(123);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 22:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(124);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 23:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(125);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 24:
if (eof) ADVANCE(25);
if (lookahead == '}') ADVANCE(35);
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(112);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(127);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(96);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(72);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(101);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(42);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 25:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 26:
ACCEPT_TOKEN(sym__escape_identity);
END_STATE();
case 27:
ACCEPT_TOKEN(anon_sym_BSLASHt);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_BSLASHr);
END_STATE();
case 29:
ACCEPT_TOKEN(anon_sym_BSLASHn);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_BSLASH_SEMI);
END_STATE();
case 32:
ACCEPT_TOKEN(aux_sym_variable_token1);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_DOLLAR);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_ENV);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_CACHE);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_LT);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 41:
ACCEPT_TOKEN(aux_sym__gen_exp_arguments_token1);
END_STATE();
case 42:
ACCEPT_TOKEN(aux_sym__untrimmed_argument_token1);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
case 46:
ACCEPT_TOKEN(aux_sym__quoted_text_token1);
END_STATE();
case 47:
ACCEPT_TOKEN(aux_sym__quoted_text_token1);
if (lookahead == 'A') ADVANCE(14);
END_STATE();
case 48:
ACCEPT_TOKEN(aux_sym__quoted_text_token1);
if (lookahead == 'N') ADVANCE(17);
END_STATE();
case 49:
ACCEPT_TOKEN(aux_sym__unquoted_text_token1);
END_STATE();
case 50:
ACCEPT_TOKEN(aux_sym__unquoted_text_token1);
if (lookahead == 'A') ADVANCE(14);
END_STATE();
case 51:
ACCEPT_TOKEN(aux_sym__unquoted_text_token1);
if (lookahead == 'N') ADVANCE(17);
END_STATE();
case 52:
ACCEPT_TOKEN(aux_sym__unquoted_text_token1);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(57);
END_STATE();
case 53:
ACCEPT_TOKEN(aux_sym_if_command_token1);
END_STATE();
case 54:
ACCEPT_TOKEN(aux_sym_endwhile_command_token1);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(38);
if (lookahead == 'C') ADVANCE(50);
if (lookahead == 'E') ADVANCE(51);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '{') ADVANCE(34);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(52);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 55:
ACCEPT_TOKEN(aux_sym_endwhile_command_token1);
if (lookahead == '$') ADVANCE(33);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '\\') ADVANCE(13);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(52);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '#' &&
(lookahead < '\'' || ')' < lookahead)) ADVANCE(49);
END_STATE();
case 56:
ACCEPT_TOKEN(aux_sym_endwhile_command_token1);
if (lookahead == ')') ADVANCE(44);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(57);
END_STATE();
case 57:
ACCEPT_TOKEN(aux_sym_endwhile_command_token1);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(57);
END_STATE();
case 58:
ACCEPT_TOKEN(sym_if);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 59:
ACCEPT_TOKEN(sym_elseif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 60:
ACCEPT_TOKEN(sym_else);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(98);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 61:
ACCEPT_TOKEN(sym_endif);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 62:
ACCEPT_TOKEN(sym_foreach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 63:
ACCEPT_TOKEN(sym_endforeach);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 64:
ACCEPT_TOKEN(sym_while);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 65:
ACCEPT_TOKEN(sym_endwhile);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 66:
ACCEPT_TOKEN(sym_function);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 67:
ACCEPT_TOKEN(sym_endfunction);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 68:
ACCEPT_TOKEN(sym_macro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 69:
ACCEPT_TOKEN(sym_endmacro);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 70:
ACCEPT_TOKEN(sym_block);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 71:
ACCEPT_TOKEN(sym_endblock);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 72:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(80);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 73:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(79);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 74:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(82);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 75:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(83);
if (('0' <= lookahead && lookahead <= '9') ||
('B' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 76:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(116);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 77:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(110);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 78:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(140);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 79:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(102);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 80:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(136);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 81:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(111);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 82:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(103);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 83:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(137);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 84:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(141);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 85:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(117);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 86:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(76);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 87:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(143);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 88:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(106);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 89:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(99);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 90:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(100);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 91:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(64);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 92:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(60);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 93:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 94:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(73);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 95:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(74);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 96:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(58);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 97:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(61);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 98:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(59);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 99:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(142);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 100:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(134);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 101:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(105);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 102:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 103:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(63);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 104:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(109);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 105:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(114);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 106:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(97);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 107:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(130);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 108:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(132);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 109:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(115);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 110:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'K' ||
lookahead == 'k') ADVANCE(70);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 111:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'K' ||
lookahead == 'k') ADVANCE(71);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 112:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(131);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 113:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(139);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(88);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 114:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(91);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 115:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(93);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 116:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(133);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 117:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(75);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 118:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(66);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 119:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(67);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 120:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(89);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 121:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(78);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 122:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(85);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 123:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(86);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 124:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(87);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 125:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(90);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 126:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(84);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 127:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(135);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(121);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 128:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(68);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 129:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(69);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 130:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(118);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 131:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(77);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 132:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(119);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 133:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(81);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 134:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(138);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 135:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(94);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 136:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(128);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 137:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(129);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 138:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(95);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 139:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(92);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 140:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(107);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 141:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(108);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 142:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(126);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 143:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(104);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 144:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0, .external_lex_state = 1},
[1] = {.lex_state = 24, .external_lex_state = 2},
[2] = {.lex_state = 18, .external_lex_state = 2},
[3] = {.lex_state = 18, .external_lex_state = 2},
[4] = {.lex_state = 18, .external_lex_state = 2},
[5] = {.lex_state = 18, .external_lex_state = 2},
[6] = {.lex_state = 18, .external_lex_state = 2},
[7] = {.lex_state = 18, .external_lex_state = 2},
[8] = {.lex_state = 18, .external_lex_state = 2},
[9] = {.lex_state = 18, .external_lex_state = 2},
[10] = {.lex_state = 18, .external_lex_state = 2},
[11] = {.lex_state = 18, .external_lex_state = 2},
[12] = {.lex_state = 18, .external_lex_state = 2},
[13] = {.lex_state = 18, .external_lex_state = 2},
[14] = {.lex_state = 18, .external_lex_state = 2},
[15] = {.lex_state = 18, .external_lex_state = 2},
[16] = {.lex_state = 18, .external_lex_state = 2},
[17] = {.lex_state = 2, .external_lex_state = 1},
[18] = {.lex_state = 2, .external_lex_state = 1},
[19] = {.lex_state = 2, .external_lex_state = 1},
[20] = {.lex_state = 2, .external_lex_state = 1},
[21] = {.lex_state = 2, .external_lex_state = 1},
[22] = {.lex_state = 2, .external_lex_state = 1},
[23] = {.lex_state = 2, .external_lex_state = 1},
[24] = {.lex_state = 2, .external_lex_state = 1},
[25] = {.lex_state = 2, .external_lex_state = 1},
[26] = {.lex_state = 2, .external_lex_state = 1},
[27] = {.lex_state = 2, .external_lex_state = 1},
[28] = {.lex_state = 2, .external_lex_state = 1},
[29] = {.lex_state = 2, .external_lex_state = 1},
[30] = {.lex_state = 2, .external_lex_state = 1},
[31] = {.lex_state = 2, .external_lex_state = 1},
[32] = {.lex_state = 2, .external_lex_state = 1},
[33] = {.lex_state = 2, .external_lex_state = 1},
[34] = {.lex_state = 2, .external_lex_state = 1},
[35] = {.lex_state = 2, .external_lex_state = 1},
[36] = {.lex_state = 2, .external_lex_state = 1},
[37] = {.lex_state = 2, .external_lex_state = 1},
[38] = {.lex_state = 2, .external_lex_state = 1},
[39] = {.lex_state = 2, .external_lex_state = 1},
[40] = {.lex_state = 2, .external_lex_state = 1},
[41] = {.lex_state = 2, .external_lex_state = 1},
[42] = {.lex_state = 2, .external_lex_state = 1},
[43] = {.lex_state = 2, .external_lex_state = 1},
[44] = {.lex_state = 2, .external_lex_state = 1},
[45] = {.lex_state = 2, .external_lex_state = 1},
[46] = {.lex_state = 2, .external_lex_state = 1},
[47] = {.lex_state = 2, .external_lex_state = 1},
[48] = {.lex_state = 2, .external_lex_state = 1},
[49] = {.lex_state = 2, .external_lex_state = 1},
[50] = {.lex_state = 2, .external_lex_state = 1},
[51] = {.lex_state = 2, .external_lex_state = 1},
[52] = {.lex_state = 2, .external_lex_state = 1},
[53] = {.lex_state = 2, .external_lex_state = 1},
[54] = {.lex_state = 2, .external_lex_state = 1},
[55] = {.lex_state = 2, .external_lex_state = 1},
[56] = {.lex_state = 2, .external_lex_state = 1},
[57] = {.lex_state = 2, .external_lex_state = 1},
[58] = {.lex_state = 2, .external_lex_state = 1},
[59] = {.lex_state = 2, .external_lex_state = 1},
[60] = {.lex_state = 2, .external_lex_state = 1},
[61] = {.lex_state = 2, .external_lex_state = 1},
[62] = {.lex_state = 2, .external_lex_state = 1},
[63] = {.lex_state = 2, .external_lex_state = 1},
[64] = {.lex_state = 2, .external_lex_state = 1},
[65] = {.lex_state = 2, .external_lex_state = 1},
[66] = {.lex_state = 2, .external_lex_state = 1},
[67] = {.lex_state = 2, .external_lex_state = 1},
[68] = {.lex_state = 2, .external_lex_state = 1},
[69] = {.lex_state = 2, .external_lex_state = 1},
[70] = {.lex_state = 2, .external_lex_state = 1},
[71] = {.lex_state = 2, .external_lex_state = 1},
[72] = {.lex_state = 2, .external_lex_state = 1},
[73] = {.lex_state = 2, .external_lex_state = 1},
[74] = {.lex_state = 2, .external_lex_state = 1},
[75] = {.lex_state = 2, .external_lex_state = 1},
[76] = {.lex_state = 2, .external_lex_state = 1},
[77] = {.lex_state = 2, .external_lex_state = 1},
[78] = {.lex_state = 2, .external_lex_state = 1},
[79] = {.lex_state = 2, .external_lex_state = 1},
[80] = {.lex_state = 2, .external_lex_state = 1},
[81] = {.lex_state = 2, .external_lex_state = 1},
[82] = {.lex_state = 2, .external_lex_state = 1},
[83] = {.lex_state = 2, .external_lex_state = 1},
[84] = {.lex_state = 2, .external_lex_state = 1},
[85] = {.lex_state = 2, .external_lex_state = 1},
[86] = {.lex_state = 2, .external_lex_state = 1},
[87] = {.lex_state = 2, .external_lex_state = 1},
[88] = {.lex_state = 2, .external_lex_state = 1},
[89] = {.lex_state = 2, .external_lex_state = 1},
[90] = {.lex_state = 2, .external_lex_state = 1},
[91] = {.lex_state = 2, .external_lex_state = 1},
[92] = {.lex_state = 2, .external_lex_state = 1},
[93] = {.lex_state = 2, .external_lex_state = 1},
[94] = {.lex_state = 2, .external_lex_state = 1},
[95] = {.lex_state = 2, .external_lex_state = 1},
[96] = {.lex_state = 2, .external_lex_state = 1},
[97] = {.lex_state = 2, .external_lex_state = 1},
[98] = {.lex_state = 2, .external_lex_state = 1},
[99] = {.lex_state = 2, .external_lex_state = 1},
[100] = {.lex_state = 2, .external_lex_state = 1},
[101] = {.lex_state = 2, .external_lex_state = 1},
[102] = {.lex_state = 2, .external_lex_state = 1},
[103] = {.lex_state = 2, .external_lex_state = 1},
[104] = {.lex_state = 2, .external_lex_state = 1},
[105] = {.lex_state = 2, .external_lex_state = 1},
[106] = {.lex_state = 2, .external_lex_state = 1},
[107] = {.lex_state = 2, .external_lex_state = 1},
[108] = {.lex_state = 2, .external_lex_state = 1},
[109] = {.lex_state = 2, .external_lex_state = 1},
[110] = {.lex_state = 2, .external_lex_state = 1},
[111] = {.lex_state = 2, .external_lex_state = 1},
[112] = {.lex_state = 2, .external_lex_state = 1},
[113] = {.lex_state = 2, .external_lex_state = 1},
[114] = {.lex_state = 2, .external_lex_state = 1},
[115] = {.lex_state = 2, .external_lex_state = 1},
[116] = {.lex_state = 2, .external_lex_state = 1},
[117] = {.lex_state = 2, .external_lex_state = 1},
[118] = {.lex_state = 2, .external_lex_state = 1},
[119] = {.lex_state = 2, .external_lex_state = 1},
[120] = {.lex_state = 2, .external_lex_state = 1},
[121] = {.lex_state = 2, .external_lex_state = 1},
[122] = {.lex_state = 2, .external_lex_state = 1},
[123] = {.lex_state = 2, .external_lex_state = 1},
[124] = {.lex_state = 2, .external_lex_state = 1},
[125] = {.lex_state = 2, .external_lex_state = 1},
[126] = {.lex_state = 2, .external_lex_state = 1},
[127] = {.lex_state = 2, .external_lex_state = 1},
[128] = {.lex_state = 2, .external_lex_state = 1},
[129] = {.lex_state = 2, .external_lex_state = 1},
[130] = {.lex_state = 2, .external_lex_state = 1},
[131] = {.lex_state = 2, .external_lex_state = 1},
[132] = {.lex_state = 2, .external_lex_state = 1},
[133] = {.lex_state = 2, .external_lex_state = 1},
[134] = {.lex_state = 2, .external_lex_state = 1},
[135] = {.lex_state = 2, .external_lex_state = 1},
[136] = {.lex_state = 2, .external_lex_state = 1},
[137] = {.lex_state = 2, .external_lex_state = 1},
[138] = {.lex_state = 2, .external_lex_state = 1},
[139] = {.lex_state = 2, .external_lex_state = 1},
[140] = {.lex_state = 2, .external_lex_state = 1},
[141] = {.lex_state = 2, .external_lex_state = 1},
[142] = {.lex_state = 2, .external_lex_state = 1},
[143] = {.lex_state = 2, .external_lex_state = 1},
[144] = {.lex_state = 2, .external_lex_state = 1},
[145] = {.lex_state = 2, .external_lex_state = 1},
[146] = {.lex_state = 2, .external_lex_state = 1},
[147] = {.lex_state = 2, .external_lex_state = 1},
[148] = {.lex_state = 2, .external_lex_state = 1},
[149] = {.lex_state = 2, .external_lex_state = 1},
[150] = {.lex_state = 2, .external_lex_state = 1},
[151] = {.lex_state = 2, .external_lex_state = 1},
[152] = {.lex_state = 2, .external_lex_state = 1},
[153] = {.lex_state = 2, .external_lex_state = 1},
[154] = {.lex_state = 2, .external_lex_state = 1},
[155] = {.lex_state = 2, .external_lex_state = 1},
[156] = {.lex_state = 2, .external_lex_state = 1},
[157] = {.lex_state = 2, .external_lex_state = 1},
[158] = {.lex_state = 2, .external_lex_state = 1},
[159] = {.lex_state = 2, .external_lex_state = 1},
[160] = {.lex_state = 2, .external_lex_state = 1},
[161] = {.lex_state = 2, .external_lex_state = 1},
[162] = {.lex_state = 2, .external_lex_state = 1},
[163] = {.lex_state = 2, .external_lex_state = 1},
[164] = {.lex_state = 2, .external_lex_state = 1},
[165] = {.lex_state = 2, .external_lex_state = 1},
[166] = {.lex_state = 2, .external_lex_state = 1},
[167] = {.lex_state = 2, .external_lex_state = 1},
[168] = {.lex_state = 2, .external_lex_state = 1},
[169] = {.lex_state = 2, .external_lex_state = 1},
[170] = {.lex_state = 2, .external_lex_state = 1},
[171] = {.lex_state = 2, .external_lex_state = 1},
[172] = {.lex_state = 2, .external_lex_state = 1},
[173] = {.lex_state = 2, .external_lex_state = 1},
[174] = {.lex_state = 2, .external_lex_state = 1},
[175] = {.lex_state = 2, .external_lex_state = 1},
[176] = {.lex_state = 2, .external_lex_state = 1},
[177] = {.lex_state = 2, .external_lex_state = 1},
[178] = {.lex_state = 2, .external_lex_state = 1},
[179] = {.lex_state = 2, .external_lex_state = 1},
[180] = {.lex_state = 2, .external_lex_state = 1},
[181] = {.lex_state = 2, .external_lex_state = 1},
[182] = {.lex_state = 2, .external_lex_state = 1},
[183] = {.lex_state = 2, .external_lex_state = 1},
[184] = {.lex_state = 2, .external_lex_state = 1},
[185] = {.lex_state = 2, .external_lex_state = 1},
[186] = {.lex_state = 2, .external_lex_state = 1},
[187] = {.lex_state = 2, .external_lex_state = 1},
[188] = {.lex_state = 2, .external_lex_state = 1},
[189] = {.lex_state = 2, .external_lex_state = 1},
[190] = {.lex_state = 2, .external_lex_state = 1},
[191] = {.lex_state = 2, .external_lex_state = 1},
[192] = {.lex_state = 18, .external_lex_state = 2},
[193] = {.lex_state = 18, .external_lex_state = 2},
[194] = {.lex_state = 24, .external_lex_state = 2},
[195] = {.lex_state = 24, .external_lex_state = 2},
[196] = {.lex_state = 24, .external_lex_state = 2},
[197] = {.lex_state = 24, .external_lex_state = 2},
[198] = {.lex_state = 24, .external_lex_state = 2},
[199] = {.lex_state = 24, .external_lex_state = 2},
[200] = {.lex_state = 24, .external_lex_state = 2},
[201] = {.lex_state = 24, .external_lex_state = 2},
[202] = {.lex_state = 24, .external_lex_state = 2},
[203] = {.lex_state = 19, .external_lex_state = 2},
[204] = {.lex_state = 20, .external_lex_state = 2},
[205] = {.lex_state = 24, .external_lex_state = 2},
[206] = {.lex_state = 21, .external_lex_state = 2},
[207] = {.lex_state = 24, .external_lex_state = 2},
[208] = {.lex_state = 24, .external_lex_state = 2},
[209] = {.lex_state = 24, .external_lex_state = 2},
[210] = {.lex_state = 20, .external_lex_state = 2},
[211] = {.lex_state = 24, .external_lex_state = 2},
[212] = {.lex_state = 24, .external_lex_state = 2},
[213] = {.lex_state = 23, .external_lex_state = 2},
[214] = {.lex_state = 24, .external_lex_state = 2},
[215] = {.lex_state = 24, .external_lex_state = 2},
[216] = {.lex_state = 24, .external_lex_state = 2},
[217] = {.lex_state = 24, .external_lex_state = 2},
[218] = {.lex_state = 21, .external_lex_state = 2},
[219] = {.lex_state = 24, .external_lex_state = 2},
[220] = {.lex_state = 24, .external_lex_state = 2},
[221] = {.lex_state = 23, .external_lex_state = 2},
[222] = {.lex_state = 22, .external_lex_state = 2},
[223] = {.lex_state = 24, .external_lex_state = 2},
[224] = {.lex_state = 24, .external_lex_state = 2},
[225] = {.lex_state = 24, .external_lex_state = 2},
[226] = {.lex_state = 19, .external_lex_state = 2},
[227] = {.lex_state = 24, .external_lex_state = 2},
[228] = {.lex_state = 24, .external_lex_state = 2},
[229] = {.lex_state = 22, .external_lex_state = 2},
[230] = {.lex_state = 24, .external_lex_state = 2},
[231] = {.lex_state = 24, .external_lex_state = 2},
[232] = {.lex_state = 24, .external_lex_state = 2},
[233] = {.lex_state = 24, .external_lex_state = 2},
[234] = {.lex_state = 24, .external_lex_state = 2},
[235] = {.lex_state = 24, .external_lex_state = 2},
[236] = {.lex_state = 24, .external_lex_state = 2},
[237] = {.lex_state = 24, .external_lex_state = 2},
[238] = {.lex_state = 24, .external_lex_state = 2},
[239] = {.lex_state = 24, .external_lex_state = 2},
[240] = {.lex_state = 24, .external_lex_state = 2},
[241] = {.lex_state = 7, .external_lex_state = 3},
[242] = {.lex_state = 7, .external_lex_state = 3},
[243] = {.lex_state = 2, .external_lex_state = 1},
[244] = {.lex_state = 7, .external_lex_state = 3},
[245] = {.lex_state = 2, .external_lex_state = 1},
[246] = {.lex_state = 7, .external_lex_state = 3},
[247] = {.lex_state = 7, .external_lex_state = 3},
[248] = {.lex_state = 7, .external_lex_state = 3},
[249] = {.lex_state = 7, .external_lex_state = 3},
[250] = {.lex_state = 7, .external_lex_state = 3},
[251] = {.lex_state = 7, .external_lex_state = 3},
[252] = {.lex_state = 3, .external_lex_state = 3},
[253] = {.lex_state = 3, .external_lex_state = 3},
[254] = {.lex_state = 3, .external_lex_state = 3},
[255] = {.lex_state = 3, .external_lex_state = 3},
[256] = {.lex_state = 3, .external_lex_state = 3},
[257] = {.lex_state = 3, .external_lex_state = 3},
[258] = {.lex_state = 3, .external_lex_state = 3},
[259] = {.lex_state = 3, .external_lex_state = 3},
[260] = {.lex_state = 3, .external_lex_state = 3},
[261] = {.lex_state = 3, .external_lex_state = 3},
[262] = {.lex_state = 3, .external_lex_state = 3},
[263] = {.lex_state = 3, .external_lex_state = 3},
[264] = {.lex_state = 3, .external_lex_state = 3},
[265] = {.lex_state = 3, .external_lex_state = 3},
[266] = {.lex_state = 3, .external_lex_state = 3},
[267] = {.lex_state = 3, .external_lex_state = 3},
[268] = {.lex_state = 3, .external_lex_state = 3},
[269] = {.lex_state = 3, .external_lex_state = 3},
[270] = {.lex_state = 3, .external_lex_state = 3},
[271] = {.lex_state = 3, .external_lex_state = 3},
[272] = {.lex_state = 3, .external_lex_state = 3},
[273] = {.lex_state = 3, .external_lex_state = 3},
[274] = {.lex_state = 3, .external_lex_state = 3},
[275] = {.lex_state = 3, .external_lex_state = 3},
[276] = {.lex_state = 3, .external_lex_state = 3},
[277] = {.lex_state = 3, .external_lex_state = 3},
[278] = {.lex_state = 3, .external_lex_state = 3},
[279] = {.lex_state = 3, .external_lex_state = 3},
[280] = {.lex_state = 5, .external_lex_state = 3},
[281] = {.lex_state = 5, .external_lex_state = 3},
[282] = {.lex_state = 8},
[283] = {.lex_state = 12},
[284] = {.lex_state = 8},
[285] = {.lex_state = 12},
[286] = {.lex_state = 8},
[287] = {.lex_state = 8},
[288] = {.lex_state = 8},
[289] = {.lex_state = 3},
[290] = {.lex_state = 3},
[291] = {.lex_state = 55},
[292] = {.lex_state = 55},
[293] = {.lex_state = 8},
[294] = {.lex_state = 1, .external_lex_state = 1},
[295] = {.lex_state = 9},
[296] = {.lex_state = 9},
[297] = {.lex_state = 9},
[298] = {.lex_state = 9},
[299] = {.lex_state = 9},
[300] = {.lex_state = 9},
[301] = {.lex_state = 9},
[302] = {.lex_state = 9},
[303] = {.lex_state = 9},
[304] = {.lex_state = 9},
[305] = {.lex_state = 9},
[306] = {.lex_state = 9},
[307] = {.lex_state = 9},
[308] = {.lex_state = 9},
[309] = {.lex_state = 9},
[310] = {.lex_state = 9},
[311] = {.lex_state = 9},
[312] = {.lex_state = 9},
[313] = {.lex_state = 9},
[314] = {.lex_state = 9},
[315] = {.lex_state = 9},
[316] = {.lex_state = 9},
[317] = {.lex_state = 9},
[318] = {.lex_state = 2, .external_lex_state = 1},
[319] = {.lex_state = 4, .external_lex_state = 3},
[320] = {.lex_state = 2, .external_lex_state = 1},
[321] = {.lex_state = 2, .external_lex_state = 1},
[322] = {.lex_state = 2, .external_lex_state = 1},
[323] = {.lex_state = 2, .external_lex_state = 1},
[324] = {.lex_state = 2, .external_lex_state = 1},
[325] = {.lex_state = 2, .external_lex_state = 1},
[326] = {.lex_state = 2, .external_lex_state = 1},
[327] = {.lex_state = 2, .external_lex_state = 1},
[328] = {.lex_state = 2, .external_lex_state = 1},
[329] = {.lex_state = 2, .external_lex_state = 1},
[330] = {.lex_state = 2, .external_lex_state = 1},
[331] = {.lex_state = 2, .external_lex_state = 1},
[332] = {.lex_state = 11},
[333] = {.lex_state = 18, .external_lex_state = 2},
[334] = {.lex_state = 54},
[335] = {.lex_state = 18, .external_lex_state = 2},
[336] = {.lex_state = 18, .external_lex_state = 2},
[337] = {.lex_state = 18, .external_lex_state = 2},
[338] = {.lex_state = 18, .external_lex_state = 2},
[339] = {.lex_state = 18, .external_lex_state = 2},
[340] = {.lex_state = 18, .external_lex_state = 2},
[341] = {.lex_state = 18, .external_lex_state = 2},
[342] = {.lex_state = 18, .external_lex_state = 2},
[343] = {.lex_state = 18, .external_lex_state = 2},
[344] = {.lex_state = 18, .external_lex_state = 2},
[345] = {.lex_state = 18, .external_lex_state = 2},
[346] = {.lex_state = 18, .external_lex_state = 2},
[347] = {.lex_state = 18, .external_lex_state = 2},
[348] = {.lex_state = 18, .external_lex_state = 2},
[349] = {.lex_state = 18, .external_lex_state = 2},
[350] = {.lex_state = 18, .external_lex_state = 2},
[351] = {.lex_state = 18, .external_lex_state = 2},
[352] = {.lex_state = 18, .external_lex_state = 2},
[353] = {.lex_state = 18, .external_lex_state = 2},
[354] = {.lex_state = 18, .external_lex_state = 2},
[355] = {.lex_state = 18, .external_lex_state = 2},
[356] = {.lex_state = 18, .external_lex_state = 2},
[357] = {.lex_state = 18, .external_lex_state = 2},
[358] = {.lex_state = 18, .external_lex_state = 2},
[359] = {.lex_state = 18, .external_lex_state = 2},
[360] = {.lex_state = 5, .external_lex_state = 3},
[361] = {.lex_state = 18, .external_lex_state = 2},
[362] = {.lex_state = 18, .external_lex_state = 2},
[363] = {.lex_state = 18, .external_lex_state = 2},
[364] = {.lex_state = 18, .external_lex_state = 2},
[365] = {.lex_state = 10},
[366] = {.lex_state = 18, .external_lex_state = 2},
[367] = {.lex_state = 18, .external_lex_state = 2},
[368] = {.lex_state = 18, .external_lex_state = 2},
[369] = {.lex_state = 18, .external_lex_state = 2},
[370] = {.lex_state = 18, .external_lex_state = 2},
[371] = {.lex_state = 18, .external_lex_state = 2},
[372] = {.lex_state = 6},
[373] = {.lex_state = 18, .external_lex_state = 2},
[374] = {.lex_state = 18, .external_lex_state = 2},
[375] = {.lex_state = 5, .external_lex_state = 3},
[376] = {.lex_state = 5, .external_lex_state = 3},
[377] = {.lex_state = 5, .external_lex_state = 3},
[378] = {.lex_state = 5, .external_lex_state = 3},
[379] = {.lex_state = 5, .external_lex_state = 3},
[380] = {.lex_state = 5, .external_lex_state = 3},
[381] = {.lex_state = 5, .external_lex_state = 3},
[382] = {.lex_state = 5, .external_lex_state = 3},
[383] = {.lex_state = 5, .external_lex_state = 3},
[384] = {.lex_state = 5, .external_lex_state = 3},
[385] = {.lex_state = 5, .external_lex_state = 3},
[386] = {.lex_state = 22, .external_lex_state = 2},
[387] = {.lex_state = 23, .external_lex_state = 2},
[388] = {.lex_state = 24, .external_lex_state = 2},
[389] = {.lex_state = 7, .external_lex_state = 3},
[390] = {.lex_state = 19, .external_lex_state = 2},
[391] = {.lex_state = 19, .external_lex_state = 2},
[392] = {.lex_state = 19, .external_lex_state = 2},
[393] = {.lex_state = 19, .external_lex_state = 2},
[394] = {.lex_state = 19, .external_lex_state = 2},
[395] = {.lex_state = 19, .external_lex_state = 2},
[396] = {.lex_state = 20, .external_lex_state = 2},
[397] = {.lex_state = 24, .external_lex_state = 2},
[398] = {.lex_state = 22, .external_lex_state = 2},
[399] = {.lex_state = 24, .external_lex_state = 2},
[400] = {.lex_state = 22, .external_lex_state = 2},
[401] = {.lex_state = 20, .external_lex_state = 2},
[402] = {.lex_state = 20, .external_lex_state = 2},
[403] = {.lex_state = 20, .external_lex_state = 2},
[404] = {.lex_state = 20, .external_lex_state = 2},
[405] = {.lex_state = 20, .external_lex_state = 2},
[406] = {.lex_state = 20, .external_lex_state = 2},
[407] = {.lex_state = 20, .external_lex_state = 2},
[408] = {.lex_state = 20, .external_lex_state = 2},
[409] = {.lex_state = 20, .external_lex_state = 2},
[410] = {.lex_state = 20, .external_lex_state = 2},
[411] = {.lex_state = 20, .external_lex_state = 2},
[412] = {.lex_state = 20, .external_lex_state = 2},
[413] = {.lex_state = 20, .external_lex_state = 2},
[414] = {.lex_state = 20, .external_lex_state = 2},
[415] = {.lex_state = 20, .external_lex_state = 2},
[416] = {.lex_state = 20, .external_lex_state = 2},
[417] = {.lex_state = 22, .external_lex_state = 2},
[418] = {.lex_state = 20, .external_lex_state = 2},
[419] = {.lex_state = 20, .external_lex_state = 2},
[420] = {.lex_state = 20, .external_lex_state = 2},
[421] = {.lex_state = 20, .external_lex_state = 2},
[422] = {.lex_state = 20, .external_lex_state = 2},
[423] = {.lex_state = 20, .external_lex_state = 2},
[424] = {.lex_state = 22, .external_lex_state = 2},
[425] = {.lex_state = 22, .external_lex_state = 2},
[426] = {.lex_state = 20, .external_lex_state = 2},
[427] = {.lex_state = 20, .external_lex_state = 2},
[428] = {.lex_state = 20, .external_lex_state = 2},
[429] = {.lex_state = 20, .external_lex_state = 2},
[430] = {.lex_state = 20, .external_lex_state = 2},
[431] = {.lex_state = 20, .external_lex_state = 2},
[432] = {.lex_state = 21, .external_lex_state = 2},
[433] = {.lex_state = 22, .external_lex_state = 2},
[434] = {.lex_state = 21, .external_lex_state = 2},
[435] = {.lex_state = 21, .external_lex_state = 2},
[436] = {.lex_state = 21, .external_lex_state = 2},
[437] = {.lex_state = 21, .external_lex_state = 2},
[438] = {.lex_state = 21, .external_lex_state = 2},
[439] = {.lex_state = 21, .external_lex_state = 2},
[440] = {.lex_state = 21, .external_lex_state = 2},
[441] = {.lex_state = 21, .external_lex_state = 2},
[442] = {.lex_state = 21, .external_lex_state = 2},
[443] = {.lex_state = 21, .external_lex_state = 2},
[444] = {.lex_state = 21, .external_lex_state = 2},
[445] = {.lex_state = 21, .external_lex_state = 2},
[446] = {.lex_state = 21, .external_lex_state = 2},
[447] = {.lex_state = 21, .external_lex_state = 2},
[448] = {.lex_state = 21, .external_lex_state = 2},
[449] = {.lex_state = 21, .external_lex_state = 2},
[450] = {.lex_state = 21, .external_lex_state = 2},
[451] = {.lex_state = 21, .external_lex_state = 2},
[452] = {.lex_state = 21, .external_lex_state = 2},
[453] = {.lex_state = 21, .external_lex_state = 2},
[454] = {.lex_state = 21, .external_lex_state = 2},
[455] = {.lex_state = 21, .external_lex_state = 2},
[456] = {.lex_state = 21, .external_lex_state = 2},
[457] = {.lex_state = 21, .external_lex_state = 2},
[458] = {.lex_state = 21, .external_lex_state = 2},
[459] = {.lex_state = 21, .external_lex_state = 2},
[460] = {.lex_state = 21, .external_lex_state = 2},
[461] = {.lex_state = 21, .external_lex_state = 2},
[462] = {.lex_state = 22, .external_lex_state = 2},
[463] = {.lex_state = 22, .external_lex_state = 2},
[464] = {.lex_state = 19, .external_lex_state = 2},
[465] = {.lex_state = 24, .external_lex_state = 2},
[466] = {.lex_state = 19, .external_lex_state = 2},
[467] = {.lex_state = 22, .external_lex_state = 2},
[468] = {.lex_state = 22, .external_lex_state = 2},
[469] = {.lex_state = 12},
[470] = {.lex_state = 22, .external_lex_state = 2},
[471] = {.lex_state = 22, .external_lex_state = 2},
[472] = {.lex_state = 24, .external_lex_state = 2},
[473] = {.lex_state = 22, .external_lex_state = 2},
[474] = {.lex_state = 19, .external_lex_state = 2},
[475] = {.lex_state = 22, .external_lex_state = 2},
[476] = {.lex_state = 22, .external_lex_state = 2},
[477] = {.lex_state = 22, .external_lex_state = 2},
[478] = {.lex_state = 22, .external_lex_state = 2},
[479] = {.lex_state = 22, .external_lex_state = 2},
[480] = {.lex_state = 24, .external_lex_state = 2},
[481] = {.lex_state = 22, .external_lex_state = 2},
[482] = {.lex_state = 22, .external_lex_state = 2},
[483] = {.lex_state = 22, .external_lex_state = 2},
[484] = {.lex_state = 24, .external_lex_state = 2},
[485] = {.lex_state = 24, .external_lex_state = 2},
[486] = {.lex_state = 24, .external_lex_state = 2},
[487] = {.lex_state = 24, .external_lex_state = 2},
[488] = {.lex_state = 22, .external_lex_state = 2},
[489] = {.lex_state = 24, .external_lex_state = 2},
[490] = {.lex_state = 24, .external_lex_state = 2},
[491] = {.lex_state = 19, .external_lex_state = 2},
[492] = {.lex_state = 22, .external_lex_state = 2},
[493] = {.lex_state = 23, .external_lex_state = 2},
[494] = {.lex_state = 23, .external_lex_state = 2},
[495] = {.lex_state = 23, .external_lex_state = 2},
[496] = {.lex_state = 24, .external_lex_state = 2},
[497] = {.lex_state = 24, .external_lex_state = 2},
[498] = {.lex_state = 22, .external_lex_state = 2},
[499] = {.lex_state = 19, .external_lex_state = 2},
[500] = {.lex_state = 23, .external_lex_state = 2},
[501] = {.lex_state = 23, .external_lex_state = 2},
[502] = {.lex_state = 19, .external_lex_state = 2},
[503] = {.lex_state = 22, .external_lex_state = 2},
[504] = {.lex_state = 22, .external_lex_state = 2},
[505] = {.lex_state = 22, .external_lex_state = 2},
[506] = {.lex_state = 23, .external_lex_state = 2},
[507] = {.lex_state = 22, .external_lex_state = 2},
[508] = {.lex_state = 24, .external_lex_state = 2},
[509] = {.lex_state = 19, .external_lex_state = 2},
[510] = {.lex_state = 24, .external_lex_state = 2},
[511] = {.lex_state = 24, .external_lex_state = 2},
[512] = {.lex_state = 23, .external_lex_state = 2},
[513] = {.lex_state = 23, .external_lex_state = 2},
[514] = {.lex_state = 23, .external_lex_state = 2},
[515] = {.lex_state = 23, .external_lex_state = 2},
[516] = {.lex_state = 23, .external_lex_state = 2},
[517] = {.lex_state = 24, .external_lex_state = 2},
[518] = {.lex_state = 24, .external_lex_state = 2},
[519] = {.lex_state = 19, .external_lex_state = 2},
[520] = {.lex_state = 23, .external_lex_state = 2},
[521] = {.lex_state = 23, .external_lex_state = 2},
[522] = {.lex_state = 19, .external_lex_state = 2},
[523] = {.lex_state = 23, .external_lex_state = 2},
[524] = {.lex_state = 23, .external_lex_state = 2},
[525] = {.lex_state = 23, .external_lex_state = 2},
[526] = {.lex_state = 19, .external_lex_state = 2},
[527] = {.lex_state = 24, .external_lex_state = 2},
[528] = {.lex_state = 23, .external_lex_state = 2},
[529] = {.lex_state = 19, .external_lex_state = 2},
[530] = {.lex_state = 23, .external_lex_state = 2},
[531] = {.lex_state = 19, .external_lex_state = 2},
[532] = {.lex_state = 19, .external_lex_state = 2},
[533] = {.lex_state = 24, .external_lex_state = 2},
[534] = {.lex_state = 23, .external_lex_state = 2},
[535] = {.lex_state = 23, .external_lex_state = 2},
[536] = {.lex_state = 24, .external_lex_state = 2},
[537] = {.lex_state = 19, .external_lex_state = 2},
[538] = {.lex_state = 19, .external_lex_state = 2},
[539] = {.lex_state = 19, .external_lex_state = 2},
[540] = {.lex_state = 19, .external_lex_state = 2},
[541] = {.lex_state = 23, .external_lex_state = 2},
[542] = {.lex_state = 23, .external_lex_state = 2},
[543] = {.lex_state = 23, .external_lex_state = 2},
[544] = {.lex_state = 24, .external_lex_state = 2},
[545] = {.lex_state = 19, .external_lex_state = 2},
[546] = {.lex_state = 23, .external_lex_state = 2},
[547] = {.lex_state = 23, .external_lex_state = 2},
[548] = {.lex_state = 23, .external_lex_state = 2},
[549] = {.lex_state = 19, .external_lex_state = 2},
[550] = {.lex_state = 24, .external_lex_state = 2},
[551] = {.lex_state = 24, .external_lex_state = 2},
[552] = {.lex_state = 24, .external_lex_state = 2},
[553] = {.lex_state = 24, .external_lex_state = 2},
[554] = {.lex_state = 23, .external_lex_state = 2},
[555] = {.lex_state = 19, .external_lex_state = 2},
[556] = {.lex_state = 19, .external_lex_state = 2},
[557] = {.lex_state = 24, .external_lex_state = 2},
[558] = {.lex_state = 19, .external_lex_state = 2},
[559] = {.lex_state = 24, .external_lex_state = 2},
[560] = {.lex_state = 23, .external_lex_state = 2},
[561] = {.lex_state = 19, .external_lex_state = 2},
[562] = {.lex_state = 24, .external_lex_state = 2},
[563] = {.lex_state = 24, .external_lex_state = 2},
[564] = {.lex_state = 12},
[565] = {.lex_state = 12},
[566] = {.lex_state = 24, .external_lex_state = 2},
[567] = {.lex_state = 24, .external_lex_state = 2},
[568] = {.lex_state = 24, .external_lex_state = 2},
[569] = {.lex_state = 24, .external_lex_state = 2},
[570] = {.lex_state = 24, .external_lex_state = 2},
[571] = {.lex_state = 3},
[572] = {.lex_state = 12},
[573] = {.lex_state = 12},
[574] = {.lex_state = 24, .external_lex_state = 2},
[575] = {.lex_state = 24, .external_lex_state = 2},
[576] = {.lex_state = 55},
[577] = {.lex_state = 24, .external_lex_state = 2},
[578] = {.lex_state = 24, .external_lex_state = 2},
[579] = {.lex_state = 12},
[580] = {.lex_state = 12},
[581] = {.lex_state = 24, .external_lex_state = 2},
[582] = {.lex_state = 24, .external_lex_state = 2},
[583] = {.lex_state = 8},
[584] = {.lex_state = 12},
[585] = {.lex_state = 24, .external_lex_state = 2},
[586] = {.lex_state = 24, .external_lex_state = 2},
[587] = {.lex_state = 9},
[588] = {.lex_state = 55},
[589] = {.lex_state = 8},
[590] = {.lex_state = 55},
[591] = {.lex_state = 3},
[592] = {.lex_state = 3},
[593] = {.lex_state = 8},
[594] = {.lex_state = 3},
[595] = {.lex_state = 9},
[596] = {.lex_state = 8},
[597] = {.lex_state = 8},
[598] = {.lex_state = 55},
[599] = {.lex_state = 9},
[600] = {.lex_state = 8},
[601] = {.lex_state = 3},
[602] = {.lex_state = 55},
[603] = {.lex_state = 3},
[604] = {.lex_state = 55},
[605] = {.lex_state = 3},
[606] = {.lex_state = 9},
[607] = {.lex_state = 8},
[608] = {.lex_state = 55},
[609] = {.lex_state = 55},
[610] = {.lex_state = 9},
[611] = {.lex_state = 3},
[612] = {.lex_state = 8},
[613] = {.lex_state = 9},
[614] = {.lex_state = 9},
[615] = {.lex_state = 0},
[616] = {.lex_state = 9},
[617] = {.lex_state = 9},
[618] = {.lex_state = 9},
[619] = {.lex_state = 0},
[620] = {.lex_state = 9},
[621] = {.lex_state = 9},
[622] = {.lex_state = 9},
[623] = {.lex_state = 9},
[624] = {.lex_state = 9},
[625] = {.lex_state = 9},
[626] = {.lex_state = 9},
[627] = {.lex_state = 9},
[628] = {.lex_state = 9},
[629] = {.lex_state = 9},
[630] = {.lex_state = 0},
[631] = {.lex_state = 9},
[632] = {.lex_state = 9},
[633] = {.lex_state = 9},
[634] = {.lex_state = 9},
[635] = {.lex_state = 9},
[636] = {.lex_state = 9},
[637] = {.lex_state = 9},
[638] = {.lex_state = 9},
[639] = {.lex_state = 9},
[640] = {.lex_state = 9},
[641] = {.lex_state = 9},
[642] = {.lex_state = 9},
[643] = {.lex_state = 9},
[644] = {.lex_state = 9},
[645] = {.lex_state = 9},
[646] = {.lex_state = 9},
[647] = {.lex_state = 9},
[648] = {.lex_state = 9},
[649] = {.lex_state = 9},
[650] = {.lex_state = 9},
[651] = {.lex_state = 9},
[652] = {.lex_state = 9},
[653] = {.lex_state = 9},
[654] = {.lex_state = 9},
[655] = {.lex_state = 9},
[656] = {.lex_state = 9},
[657] = {.lex_state = 9},
[658] = {.lex_state = 9},
[659] = {.lex_state = 9},
[660] = {.lex_state = 9},
[661] = {.lex_state = 9},
[662] = {.lex_state = 9},
[663] = {.lex_state = 9},
[664] = {.lex_state = 9},
[665] = {.lex_state = 9},
[666] = {.lex_state = 9},
[667] = {.lex_state = 9},
[668] = {.lex_state = 9},
[669] = {.lex_state = 9},
[670] = {.lex_state = 9},
[671] = {.lex_state = 9},
[672] = {.lex_state = 9},
[673] = {.lex_state = 9},
[674] = {.lex_state = 9},
[675] = {.lex_state = 9},
[676] = {.lex_state = 9},
[677] = {.lex_state = 9},
[678] = {.lex_state = 9},
[679] = {.lex_state = 9},
[680] = {.lex_state = 9},
[681] = {.lex_state = 9},
[682] = {.lex_state = 9},
[683] = {.lex_state = 9},
[684] = {.lex_state = 9},
[685] = {.lex_state = 9},
[686] = {.lex_state = 9},
[687] = {.lex_state = 9},
[688] = {.lex_state = 9},
[689] = {.lex_state = 9},
[690] = {.lex_state = 9},
[691] = {.lex_state = 9},
[692] = {.lex_state = 0},
[693] = {.lex_state = 9},
[694] = {.lex_state = 9},
[695] = {.lex_state = 0},
[696] = {.lex_state = 9},
[697] = {.lex_state = 9},
[698] = {.lex_state = 9},
[699] = {.lex_state = 9},
[700] = {.lex_state = 9},
[701] = {.lex_state = 9},
[702] = {.lex_state = 9},
[703] = {.lex_state = 9},
[704] = {.lex_state = 9},
[705] = {.lex_state = 9},
[706] = {.lex_state = 9},
[707] = {.lex_state = 9},
[708] = {.lex_state = 9},
[709] = {.lex_state = 9},
[710] = {.lex_state = 9},
[711] = {.lex_state = 9},
[712] = {.lex_state = 9},
[713] = {.lex_state = 9},
[714] = {.lex_state = 9},
[715] = {.lex_state = 9},
[716] = {.lex_state = 9},
[717] = {.lex_state = 9},
[718] = {.lex_state = 9},
[719] = {.lex_state = 9},
[720] = {.lex_state = 9},
[721] = {.lex_state = 9},
[722] = {.lex_state = 9},
[723] = {.lex_state = 9},
[724] = {.lex_state = 9},
[725] = {.lex_state = 9},
[726] = {.lex_state = 9},
[727] = {.lex_state = 9},
[728] = {.lex_state = 9},
[729] = {.lex_state = 9},
[730] = {.lex_state = 9},
[731] = {.lex_state = 9},
[732] = {.lex_state = 9},
[733] = {.lex_state = 19},
[734] = {.lex_state = 19},
[735] = {.lex_state = 20},
[736] = {.lex_state = 22},
[737] = {.lex_state = 19},
[738] = {.lex_state = 21},
[739] = {.lex_state = 23},
[740] = {.lex_state = 22},
[741] = {.lex_state = 20},
[742] = {.lex_state = 21},
[743] = {.lex_state = 19},
[744] = {.lex_state = 20},
[745] = {.lex_state = 56},
[746] = {.lex_state = 21},
[747] = {.lex_state = 56},
[748] = {.lex_state = 23},
[749] = {.lex_state = 22},
[750] = {.lex_state = 23},
[751] = {.lex_state = 56},
[752] = {.lex_state = 22},
[753] = {.lex_state = 23},
[754] = {.lex_state = 56},
[755] = {.lex_state = 22},
[756] = {.lex_state = 19},
[757] = {.lex_state = 20},
[758] = {.lex_state = 56},
[759] = {.lex_state = 21},
[760] = {.lex_state = 56},
[761] = {.lex_state = 56},
[762] = {.lex_state = 19},
[763] = {.lex_state = 56},
[764] = {.lex_state = 56},
[765] = {.lex_state = 20},
[766] = {.lex_state = 21},
[767] = {.lex_state = 20},
[768] = {.lex_state = 21},
[769] = {.lex_state = 20},
[770] = {.lex_state = 19},
[771] = {.lex_state = 22},
[772] = {.lex_state = 56},
[773] = {.lex_state = 23},
[774] = {.lex_state = 56},
[775] = {.lex_state = 56},
[776] = {.lex_state = 21},
[777] = {.lex_state = 56},
[778] = {.lex_state = 23},
[779] = {.lex_state = 23},
[780] = {.lex_state = 56},
[781] = {.lex_state = 22},
[782] = {.lex_state = 0},
[783] = {.lex_state = 24},
[784] = {.lex_state = 57},
[785] = {.lex_state = 57},
[786] = {.lex_state = 24},
[787] = {.lex_state = 24},
[788] = {.lex_state = 0},
[789] = {.lex_state = 0},
[790] = {.lex_state = 57},
[791] = {.lex_state = 57},
[792] = {.lex_state = 0},
[793] = {.lex_state = 0},
[794] = {.lex_state = 0},
[795] = {.lex_state = 0},
[796] = {.lex_state = 0},
[797] = {.lex_state = 0},
[798] = {.lex_state = 0},
[799] = {.lex_state = 24},
[800] = {.lex_state = 24},
[801] = {.lex_state = 57},
[802] = {.lex_state = 57},
[803] = {.lex_state = 0},
[804] = {.lex_state = 0},
[805] = {.lex_state = 57},
[806] = {.lex_state = 24},
[807] = {.lex_state = 0},
[808] = {.lex_state = 24},
[809] = {.lex_state = 0},
[810] = {.lex_state = 24},
[811] = {.lex_state = 24},
[812] = {.lex_state = 0},
[813] = {.lex_state = 0},
[814] = {.lex_state = 0},
[815] = {.lex_state = 24},
[816] = {.lex_state = 24},
[817] = {.lex_state = 24},
[818] = {.lex_state = 24},
[819] = {.lex_state = 0},
[820] = {.lex_state = 0},
[821] = {.lex_state = 0},
[822] = {.lex_state = 24},
[823] = {.lex_state = 0},
[824] = {.lex_state = 57},
[825] = {.lex_state = 57},
[826] = {.lex_state = 24},
[827] = {.lex_state = 24},
[828] = {.lex_state = 0},
[829] = {.lex_state = 57},
[830] = {.lex_state = 57},
[831] = {.lex_state = 24},
[832] = {.lex_state = 0},
[833] = {.lex_state = 57},
[834] = {.lex_state = 0},
[835] = {.lex_state = 0},
[836] = {.lex_state = 0},
[837] = {.lex_state = 0},
[838] = {.lex_state = 0},
[839] = {.lex_state = 57},
[840] = {.lex_state = 0},
[841] = {.lex_state = 0},
[842] = {.lex_state = 0},
[843] = {.lex_state = 24},
[844] = {.lex_state = 0},
[845] = {.lex_state = 0},
[846] = {.lex_state = 57},
[847] = {.lex_state = 0},
[848] = {.lex_state = 57},
[849] = {.lex_state = 57},
[850] = {.lex_state = 0},
[851] = {.lex_state = 0},
[852] = {.lex_state = 57},
[853] = {.lex_state = 0},
[854] = {.lex_state = 0},
[855] = {.lex_state = 0},
[856] = {.lex_state = 0},
[857] = {.lex_state = 0},
[858] = {.lex_state = 0},
[859] = {.lex_state = 0},
[860] = {.lex_state = 0},
[861] = {.lex_state = 0},
[862] = {.lex_state = 0},
[863] = {.lex_state = 0},
[864] = {.lex_state = 24},
[865] = {.lex_state = 0},
[866] = {.lex_state = 0},
[867] = {.lex_state = 0},
[868] = {.lex_state = 24},
[869] = {.lex_state = 24},
[870] = {.lex_state = 0},
[871] = {.lex_state = 0},
[872] = {.lex_state = 0},
[873] = {.lex_state = 0},
};
enum {
ts_external_token_bracket_argument = 0,
ts_external_token_bracket_comment = 1,
ts_external_token_line_comment = 2,
};
static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = {
[ts_external_token_bracket_argument] = sym_bracket_argument,
[ts_external_token_bracket_comment] = sym_bracket_comment,
[ts_external_token_line_comment] = sym_line_comment,
};
static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = {
[1] = {
[ts_external_token_bracket_argument] = true,
[ts_external_token_bracket_comment] = true,
[ts_external_token_line_comment] = true,
},
[2] = {
[ts_external_token_bracket_comment] = true,
[ts_external_token_line_comment] = true,
},
[3] = {
[ts_external_token_bracket_argument] = true,
},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym__escape_identity] = ACTIONS(1),
[anon_sym_BSLASHt] = ACTIONS(1),
[anon_sym_BSLASHr] = ACTIONS(1),
[anon_sym_BSLASHn] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_BSLASH_SEMI] = ACTIONS(1),
[anon_sym_DOLLAR] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_ENV] = ACTIONS(1),
[anon_sym_CACHE] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[aux_sym__gen_exp_arguments_token1] = ACTIONS(1),
[aux_sym__untrimmed_argument_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_DQUOTE] = ACTIONS(1),
[aux_sym__unquoted_text_token1] = ACTIONS(1),
[aux_sym_if_command_token1] = ACTIONS(1),
[sym_bracket_argument] = ACTIONS(1),
[sym_bracket_comment] = ACTIONS(1),
[sym_line_comment] = ACTIONS(1),
},
[1] = {
[sym_source_file] = STATE(861),
[sym_if_command] = STATE(10),
[sym_if_condition] = STATE(227),
[sym_foreach_command] = STATE(236),
[sym_foreach_loop] = STATE(227),
[sym_while_command] = STATE(217),
[sym_while_loop] = STATE(227),
[sym_function_command] = STATE(207),
[sym_function_def] = STATE(227),
[sym_macro_command] = STATE(215),
[sym_macro_def] = STATE(227),
[sym_block_command] = STATE(212),
[sym_block_def] = STATE(227),
[sym_normal_command] = STATE(227),
[sym__command_invocation] = STATE(227),
[sym__untrimmed_command_invocation] = STATE(227),
[aux_sym_source_file_repeat1] = STATE(227),
[ts_builtin_sym_end] = ACTIONS(3),
[aux_sym__untrimmed_argument_token1] = ACTIONS(5),
[sym_if] = ACTIONS(7),
[sym_foreach] = ACTIONS(9),
[sym_while] = ACTIONS(11),
[sym_function] = ACTIONS(13),
[sym_macro] = ACTIONS(15),
[sym_block] = ACTIONS(17),
[sym_identifier] = ACTIONS(19),
[sym_bracket_comment] = ACTIONS(5),
[sym_line_comment] = ACTIONS(5),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(27), 1,
sym_endif,
ACTIONS(29), 1,
sym_identifier,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(359), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(3), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[75] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(27), 1,
sym_endif,
ACTIONS(29), 1,
sym_identifier,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(335), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[150] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(31), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(560), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(5), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[225] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(31), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(548), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[300] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(33), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(492), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(7), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[375] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(33), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(482), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[450] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(35), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(509), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(9), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[525] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(35), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(522), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[600] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(37), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(465), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(15), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[675] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(39), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(396), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(12), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[750] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(39), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(402), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[825] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(41), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(432), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(14), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[900] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(41), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(435), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[975] = 20,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(23), 1,
sym_elseif,
ACTIONS(25), 1,
sym_else,
ACTIONS(29), 1,
sym_identifier,
ACTIONS(37), 1,
sym_endif,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
STATE(485), 1,
sym_endif_command,
ACTIONS(21), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[1050] = 19,
ACTIONS(46), 1,
sym_if,
ACTIONS(49), 1,
sym_elseif,
ACTIONS(52), 1,
sym_else,
ACTIONS(55), 1,
sym_endif,
ACTIONS(57), 1,
sym_foreach,
ACTIONS(60), 1,
sym_while,
ACTIONS(63), 1,
sym_function,
ACTIONS(66), 1,
sym_macro,
ACTIONS(69), 1,
sym_block,
ACTIONS(72), 1,
sym_identifier,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
ACTIONS(43), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(16), 4,
sym_body,
sym_elseif_command,
sym_else_command,
aux_sym_if_condition_repeat1,
STATE(193), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[1122] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(83), 1,
anon_sym_RPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(79), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(100), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1181] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(93), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1240] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(97), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(95), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(51), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1299] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(101), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(99), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(22), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1358] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(105), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(103), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(56), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1417] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(107), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1476] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(111), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(109), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(59), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1535] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(107), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(113), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(28), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1594] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(117), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(115), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(62), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1653] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(121), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(119), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(30), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1712] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(125), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(123), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(65), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1771] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(127), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1830] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(131), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(129), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(68), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1889] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(133), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[1948] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(137), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(135), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(71), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2007] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(133), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(139), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(36), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2066] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(143), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(141), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(38), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2125] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(147), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(145), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(40), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2184] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(151), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(149), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(42), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2243] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(153), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2302] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(157), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(155), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(186), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2361] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(159), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2420] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(159), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(161), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(44), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2479] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(163), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2538] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(163), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(165), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(45), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2597] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(167), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2656] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(167), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(169), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(46), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2715] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(171), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2774] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(173), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2833] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(175), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2892] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(179), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(177), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(95), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[2951] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(183), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(181), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(49), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3010] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(185), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3069] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(185), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(187), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(54), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3128] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(189), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3187] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(193), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(191), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(175), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3246] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(189), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(195), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(104), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3305] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(197), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3364] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(201), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(199), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(190), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3423] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(203), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3482] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(203), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(205), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(18), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3541] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(209), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(207), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(70), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3600] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(211), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3659] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(211), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(213), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(108), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3718] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(217), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(215), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(74), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3777] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(219), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3836] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(219), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(221), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(110), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3895] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(225), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(223), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(78), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[3954] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(227), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4013] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(227), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(229), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(112), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4072] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(233), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(231), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(80), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4131] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(235), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4190] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(235), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(237), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(114), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4249] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(239), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4308] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(241), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4367] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(241), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(243), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(116), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4426] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(247), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(245), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(118), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4485] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(249), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4544] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(253), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(251), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(121), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4603] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(249), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(255), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(82), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4662] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(259), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(257), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(124), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4721] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(261), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4780] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(261), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(263), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(83), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4839] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(265), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4898] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(265), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(267), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(84), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[4957] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(269), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5016] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(271), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5075] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(273), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5134] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(277), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(275), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(86), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5193] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(279), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5252] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(279), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(281), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(89), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5311] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(285), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(283), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(90), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5370] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(287), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5429] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(289), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5488] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(289), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(291), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(94), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5547] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(295), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(293), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(96), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5606] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(299), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(297), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(98), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5665] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(301), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5724] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(303), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5783] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(305), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5842] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(305), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(307), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(103), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5901] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(309), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[5960] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(309), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(311), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(105), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6019] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(313), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6078] = 13,
ACTIONS(318), 1,
anon_sym_DOLLAR,
ACTIONS(324), 1,
anon_sym_LPAREN,
ACTIONS(327), 1,
anon_sym_RPAREN,
ACTIONS(329), 1,
anon_sym_DQUOTE,
ACTIONS(332), 1,
aux_sym__unquoted_text_token1,
ACTIONS(335), 1,
sym_bracket_argument,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(321), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(315), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6137] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(313), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(338), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(107), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6196] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(340), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6255] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(342), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6314] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(344), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6373] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(346), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6432] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(348), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6491] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(350), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6550] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(354), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(352), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(111), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6609] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(356), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6668] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(358), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6727] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(360), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6786] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(201), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6845] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(362), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6904] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(358), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(364), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(120), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[6963] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(366), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7022] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(370), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(368), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(123), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7081] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(372), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7140] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(372), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(374), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(156), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7199] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(376), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7258] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(378), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7317] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(378), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(380), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(158), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7376] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(382), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7435] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(384), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7494] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(384), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(386), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(160), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7553] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(382), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(388), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(141), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7612] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(390), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7671] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(392), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7730] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(394), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7789] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(398), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(396), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(168), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7848] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(402), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(400), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(127), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7907] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(406), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(404), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(171), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[7966] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(402), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8025] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(410), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(408), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(113), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8084] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(414), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(412), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(128), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8143] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(414), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8202] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(418), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(416), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(129), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8261] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(422), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(420), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(143), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8320] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(426), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(424), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(145), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8379] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(430), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(428), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(151), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8438] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(432), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8497] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(418), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8556] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(434), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8615] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(434), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(436), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(164), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8674] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(438), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8733] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(438), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(440), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(165), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8792] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(442), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8851] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(446), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(444), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(133), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8910] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(450), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(448), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(136), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[8969] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(454), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(452), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(142), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9028] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(456), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9087] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(460), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(458), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(147), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9146] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(460), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9205] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(462), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9264] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(466), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(464), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(153), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9323] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(468), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9382] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(472), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(470), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(154), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9441] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(474), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9500] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(472), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9559] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(476), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9618] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(478), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9677] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(482), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(480), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(159), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9736] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(456), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(484), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(173), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9795] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(486), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9854] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(488), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9913] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(490), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[9972] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(492), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10031] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(494), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10090] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(494), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(496), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(161), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10149] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(498), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10208] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(500), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10267] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(500), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(502), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(106), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10326] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(504), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10385] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(508), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(506), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(176), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10444] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(209), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10503] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(510), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10562] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(510), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(512), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(181), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10621] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(514), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10680] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(518), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(516), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(167), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10739] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(522), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(520), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(191), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10798] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(524), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10857] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(518), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10916] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(528), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(526), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(170), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[10975] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(528), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11034] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(514), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(530), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(166), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11093] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(532), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11152] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(536), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(534), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(178), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11211] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(540), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(538), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(182), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11270] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(544), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(542), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(184), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11329] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(546), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11388] = 13,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(81), 1,
anon_sym_LPAREN,
ACTIONS(85), 1,
anon_sym_DQUOTE,
ACTIONS(87), 1,
aux_sym__unquoted_text_token1,
ACTIONS(89), 1,
sym_bracket_argument,
ACTIONS(157), 1,
anon_sym_RPAREN,
STATE(327), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(91), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
STATE(101), 4,
sym_argument,
sym__untrimmed_argument,
sym__paren_argument,
aux_sym__paren_argument_repeat1,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(245), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[11447] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(571), 1,
sym_identifier,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
ACTIONS(548), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(554), 3,
sym_elseif,
sym_else,
sym_endif,
STATE(192), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11509] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(29), 1,
sym_identifier,
STATE(2), 1,
sym_if_command,
STATE(209), 1,
sym_block_command,
STATE(231), 1,
sym_foreach_command,
STATE(233), 1,
sym_while_command,
STATE(234), 1,
sym_function_command,
STATE(235), 1,
sym_macro_command,
ACTIONS(574), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(576), 3,
sym_elseif,
sym_else,
sym_endif,
STATE(192), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11571] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(741), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11631] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(769), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11691] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(743), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11751] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(740), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11811] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(739), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11871] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(738), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11931] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(735), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[11991] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(734), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12051] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(749), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12111] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(554), 1,
sym_endfunction,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(601), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
ACTIONS(598), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(203), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12171] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(576), 1,
sym_endmacro,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
ACTIONS(604), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(210), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12231] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(750), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12291] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(576), 1,
sym_endblock,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
ACTIONS(606), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(218), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12351] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(756), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12411] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(776), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12471] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(766), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12531] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(554), 1,
sym_endmacro,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(611), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
ACTIONS(608), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(210), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12591] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(767), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12651] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(759), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12711] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(576), 1,
sym_endforeach,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
ACTIONS(614), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(221), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12771] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(733), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12831] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(757), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12891] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(781), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[12951] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(755), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13011] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(554), 1,
sym_endblock,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(619), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
ACTIONS(616), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(218), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13071] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(779), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13131] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(744), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13191] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(554), 1,
sym_endforeach,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(625), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
ACTIONS(622), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(221), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13251] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(576), 1,
sym_endwhile,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
ACTIONS(628), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(229), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13311] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(630), 1,
ts_builtin_sym_end,
ACTIONS(635), 1,
sym_identifier,
STATE(10), 1,
sym_if_command,
STATE(207), 1,
sym_function_command,
STATE(212), 1,
sym_block_command,
STATE(215), 1,
sym_macro_command,
STATE(217), 1,
sym_while_command,
STATE(236), 1,
sym_foreach_command,
ACTIONS(632), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(223), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13371] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(746), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13431] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(742), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13491] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(576), 1,
sym_endfunction,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
ACTIONS(638), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(203), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13551] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(19), 1,
sym_identifier,
ACTIONS(640), 1,
ts_builtin_sym_end,
STATE(10), 1,
sym_if_command,
STATE(207), 1,
sym_function_command,
STATE(212), 1,
sym_block_command,
STATE(215), 1,
sym_macro_command,
STATE(217), 1,
sym_while_command,
STATE(236), 1,
sym_foreach_command,
ACTIONS(642), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(223), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13611] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(596), 1,
sym_identifier,
STATE(13), 1,
sym_if_command,
STATE(195), 1,
sym_macro_command,
STATE(228), 1,
sym_block_command,
STATE(237), 1,
sym_foreach_command,
STATE(239), 1,
sym_function_command,
STATE(240), 1,
sym_while_command,
STATE(768), 1,
sym_body,
ACTIONS(594), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(206), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13671] = 16,
ACTIONS(551), 1,
sym_if,
ACTIONS(554), 1,
sym_endwhile,
ACTIONS(556), 1,
sym_foreach,
ACTIONS(559), 1,
sym_while,
ACTIONS(562), 1,
sym_function,
ACTIONS(565), 1,
sym_macro,
ACTIONS(568), 1,
sym_block,
ACTIONS(647), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
ACTIONS(644), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(229), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13731] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(737), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13791] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(748), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13851] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(736), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13911] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(752), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[13971] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(762), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14031] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(580), 1,
sym_identifier,
STATE(11), 1,
sym_if_command,
STATE(196), 1,
sym_function_command,
STATE(197), 1,
sym_while_command,
STATE(198), 1,
sym_foreach_command,
STATE(220), 1,
sym_macro_command,
STATE(224), 1,
sym_block_command,
STATE(765), 1,
sym_body,
ACTIONS(578), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(204), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14091] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(753), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14151] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(773), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14211] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(592), 1,
sym_identifier,
STATE(4), 1,
sym_if_command,
STATE(194), 1,
sym_macro_command,
STATE(225), 1,
sym_block_command,
STATE(230), 1,
sym_function_command,
STATE(232), 1,
sym_while_command,
STATE(238), 1,
sym_foreach_command,
STATE(778), 1,
sym_body,
ACTIONS(590), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(213), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14271] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(584), 1,
sym_identifier,
STATE(8), 1,
sym_if_command,
STATE(199), 1,
sym_block_command,
STATE(200), 1,
sym_macro_command,
STATE(201), 1,
sym_function_command,
STATE(202), 1,
sym_while_command,
STATE(205), 1,
sym_foreach_command,
STATE(770), 1,
sym_body,
ACTIONS(582), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(226), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14331] = 16,
ACTIONS(7), 1,
sym_if,
ACTIONS(9), 1,
sym_foreach,
ACTIONS(11), 1,
sym_while,
ACTIONS(13), 1,
sym_function,
ACTIONS(15), 1,
sym_macro,
ACTIONS(17), 1,
sym_block,
ACTIONS(588), 1,
sym_identifier,
STATE(6), 1,
sym_if_command,
STATE(208), 1,
sym_block_command,
STATE(211), 1,
sym_macro_command,
STATE(214), 1,
sym_function_command,
STATE(216), 1,
sym_while_command,
STATE(219), 1,
sym_foreach_command,
STATE(771), 1,
sym_body,
ACTIONS(586), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
STATE(222), 10,
sym_if_condition,
sym_foreach_loop,
sym_while_loop,
sym_function_def,
sym_macro_def,
sym_block_def,
sym_normal_command,
sym__command_invocation,
sym__untrimmed_command_invocation,
aux_sym_source_file_repeat1,
[14391] = 12,
ACTIONS(652), 1,
anon_sym_DOLLAR,
ACTIONS(654), 1,
anon_sym_GT,
ACTIONS(656), 1,
anon_sym_DQUOTE,
ACTIONS(658), 1,
aux_sym__unquoted_text_token1,
ACTIONS(660), 1,
sym_bracket_argument,
STATE(247), 1,
aux_sym__gen_exp_arguments_repeat1,
STATE(376), 1,
sym_argument,
STATE(377), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(380), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(381), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(650), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(280), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14442] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(666), 1,
anon_sym_GT,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
STATE(692), 1,
sym_argument,
STATE(821), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14493] = 7,
ACTIONS(677), 1,
anon_sym_DOLLAR,
ACTIONS(682), 1,
aux_sym__unquoted_text_token1,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(674), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(243), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
ACTIONS(680), 7,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[14534] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(685), 1,
anon_sym_GT,
STATE(692), 1,
sym_argument,
STATE(860), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14585] = 7,
ACTIONS(77), 1,
anon_sym_DOLLAR,
ACTIONS(689), 1,
aux_sym__unquoted_text_token1,
STATE(330), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(320), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(75), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(243), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
ACTIONS(687), 7,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[14626] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(691), 1,
anon_sym_GT,
STATE(692), 1,
sym_argument,
STATE(842), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14677] = 12,
ACTIONS(652), 1,
anon_sym_DOLLAR,
ACTIONS(656), 1,
anon_sym_DQUOTE,
ACTIONS(658), 1,
aux_sym__unquoted_text_token1,
ACTIONS(660), 1,
sym_bracket_argument,
ACTIONS(693), 1,
anon_sym_GT,
STATE(248), 1,
aux_sym__gen_exp_arguments_repeat1,
STATE(376), 1,
sym_argument,
STATE(377), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(380), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(381), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(650), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(280), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14728] = 12,
ACTIONS(698), 1,
anon_sym_DOLLAR,
ACTIONS(701), 1,
anon_sym_GT,
ACTIONS(703), 1,
anon_sym_DQUOTE,
ACTIONS(706), 1,
aux_sym__unquoted_text_token1,
ACTIONS(709), 1,
sym_bracket_argument,
STATE(248), 1,
aux_sym__gen_exp_arguments_repeat1,
STATE(376), 1,
sym_argument,
STATE(377), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(380), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(381), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(695), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(280), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14779] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(712), 1,
anon_sym_GT,
STATE(692), 1,
sym_argument,
STATE(813), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14830] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(714), 1,
anon_sym_GT,
STATE(692), 1,
sym_argument,
STATE(809), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14881] = 12,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(670), 1,
aux_sym__unquoted_text_token1,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(716), 1,
anon_sym_GT,
STATE(692), 1,
sym_argument,
STATE(795), 1,
sym__gen_exp_content,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(283), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14932] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(722), 1,
anon_sym_RPAREN,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
STATE(788), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[14980] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(726), 1,
anon_sym_RPAREN,
STATE(814), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15028] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(728), 1,
anon_sym_RPAREN,
STATE(807), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15076] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(730), 1,
anon_sym_RPAREN,
STATE(794), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15124] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(732), 1,
anon_sym_RPAREN,
STATE(823), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15172] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(734), 1,
anon_sym_RPAREN,
STATE(847), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15220] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(736), 1,
anon_sym_RPAREN,
STATE(865), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15268] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(738), 1,
anon_sym_RPAREN,
STATE(840), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15316] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(740), 1,
anon_sym_RPAREN,
STATE(782), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15364] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(742), 1,
anon_sym_RPAREN,
STATE(832), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15412] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(744), 1,
anon_sym_RPAREN,
STATE(793), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15460] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(746), 1,
anon_sym_RPAREN,
STATE(819), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15508] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(748), 1,
anon_sym_RPAREN,
STATE(820), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15556] = 11,
ACTIONS(668), 1,
anon_sym_DQUOTE,
ACTIONS(672), 1,
sym_bracket_argument,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(724), 1,
aux_sym__unquoted_text_token1,
ACTIONS(750), 1,
anon_sym_RPAREN,
STATE(836), 1,
sym_argument,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(619), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(290), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15604] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(825), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15649] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(791), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15694] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(830), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15739] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(848), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15784] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(849), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15829] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(790), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15874] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(802), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15919] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(846), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[15964] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(824), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16009] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(801), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16054] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(833), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16099] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(839), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16144] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(852), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16189] = 10,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(756), 1,
anon_sym_DQUOTE,
ACTIONS(758), 1,
aux_sym__unquoted_text_token1,
ACTIONS(760), 1,
sym_bracket_argument,
STATE(829), 1,
sym_argument,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(784), 2,
sym_quoted_argument,
sym_unquoted_argument,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(292), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16234] = 8,
ACTIONS(652), 1,
anon_sym_DOLLAR,
ACTIONS(762), 1,
aux_sym__gen_exp_arguments_token1,
ACTIONS(764), 1,
aux_sym__unquoted_text_token1,
STATE(380), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(687), 3,
sym_bracket_argument,
anon_sym_GT,
anon_sym_DQUOTE,
STATE(381), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(650), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(281), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16274] = 8,
ACTIONS(769), 1,
anon_sym_DOLLAR,
ACTIONS(772), 1,
aux_sym__gen_exp_arguments_token1,
ACTIONS(774), 1,
aux_sym__unquoted_text_token1,
STATE(380), 2,
sym__escape_encoded,
sym__escape_semicolon,
ACTIONS(680), 3,
sym_bracket_argument,
anon_sym_GT,
anon_sym_DQUOTE,
STATE(381), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(766), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(281), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16314] = 8,
ACTIONS(779), 1,
anon_sym_DOLLAR,
ACTIONS(781), 1,
anon_sym_DQUOTE,
ACTIONS(783), 1,
aux_sym__quoted_text_token1,
STATE(798), 1,
sym_quoted_element,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(777), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(293), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16352] = 7,
ACTIONS(664), 1,
anon_sym_DOLLAR,
ACTIONS(785), 1,
aux_sym__unquoted_text_token1,
ACTIONS(687), 2,
anon_sym_GT,
anon_sym_COLON,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(662), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(285), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16388] = 8,
ACTIONS(779), 1,
anon_sym_DOLLAR,
ACTIONS(783), 1,
aux_sym__quoted_text_token1,
ACTIONS(787), 1,
anon_sym_DQUOTE,
STATE(803), 1,
sym_quoted_element,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(777), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(293), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16426] = 7,
ACTIONS(792), 1,
anon_sym_DOLLAR,
ACTIONS(795), 1,
aux_sym__unquoted_text_token1,
ACTIONS(680), 2,
anon_sym_GT,
anon_sym_COLON,
STATE(564), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(579), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(789), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(285), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16462] = 8,
ACTIONS(779), 1,
anon_sym_DOLLAR,
ACTIONS(783), 1,
aux_sym__quoted_text_token1,
ACTIONS(798), 1,
anon_sym_DQUOTE,
STATE(845), 1,
sym_quoted_element,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(777), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(293), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16500] = 8,
ACTIONS(779), 1,
anon_sym_DOLLAR,
ACTIONS(783), 1,
aux_sym__quoted_text_token1,
ACTIONS(800), 1,
anon_sym_DQUOTE,
STATE(804), 1,
sym_quoted_element,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(777), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(293), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16538] = 7,
ACTIONS(805), 1,
anon_sym_DOLLAR,
ACTIONS(808), 1,
anon_sym_DQUOTE,
ACTIONS(810), 1,
aux_sym__quoted_text_token1,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(802), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(288), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16573] = 7,
ACTIONS(680), 1,
anon_sym_RPAREN,
ACTIONS(816), 1,
anon_sym_DOLLAR,
ACTIONS(819), 1,
aux_sym__unquoted_text_token1,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(813), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(289), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16608] = 7,
ACTIONS(687), 1,
anon_sym_RPAREN,
ACTIONS(720), 1,
anon_sym_DOLLAR,
ACTIONS(822), 1,
aux_sym__unquoted_text_token1,
STATE(591), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(592), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(718), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(289), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16643] = 7,
ACTIONS(772), 1,
aux_sym_endwhile_command_token1,
ACTIONS(827), 1,
anon_sym_DOLLAR,
ACTIONS(830), 1,
aux_sym__unquoted_text_token1,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(824), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(291), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16678] = 7,
ACTIONS(754), 1,
anon_sym_DOLLAR,
ACTIONS(762), 1,
aux_sym_endwhile_command_token1,
ACTIONS(833), 1,
aux_sym__unquoted_text_token1,
STATE(609), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(608), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(752), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(291), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__unquoted_text,
aux_sym_unquoted_argument_repeat1,
aux_sym__unquoted_text_repeat1,
[16713] = 7,
ACTIONS(779), 1,
anon_sym_DOLLAR,
ACTIONS(835), 1,
anon_sym_DQUOTE,
ACTIONS(837), 1,
aux_sym__quoted_text_token1,
STATE(612), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(607), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(777), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
STATE(288), 6,
sym_escape_sequence,
sym_variable_ref,
sym_gen_exp,
sym__quoted_text,
aux_sym_quoted_element_repeat1,
aux_sym__quoted_text_repeat1,
[16748] = 6,
ACTIONS(841), 1,
anon_sym_LBRACE,
ACTIONS(843), 1,
anon_sym_ENV,
ACTIONS(845), 1,
anon_sym_CACHE,
ACTIONS(847), 1,
anon_sym_LT,
ACTIONS(849), 1,
aux_sym__unquoted_text_token1,
ACTIONS(839), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[16780] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(787), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16812] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(827), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16844] = 7,
ACTIONS(860), 1,
aux_sym_variable_token1,
ACTIONS(863), 1,
anon_sym_DOLLAR,
ACTIONS(866), 1,
anon_sym_RBRACE,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(297), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(857), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16876] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(818), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16908] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(786), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16940] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(815), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[16972] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(826), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17004] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(808), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17036] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(843), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17068] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(831), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17100] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(806), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17132] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(864), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17164] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(868), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17196] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(811), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17228] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(810), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17260] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(783), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17292] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(822), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17324] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(800), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17356] = 7,
ACTIONS(855), 1,
anon_sym_DOLLAR,
ACTIONS(868), 1,
aux_sym_variable_token1,
ACTIONS(870), 1,
anon_sym_RBRACE,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(297), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17388] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(799), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17420] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(816), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17452] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(869), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17484] = 7,
ACTIONS(853), 1,
aux_sym_variable_token1,
ACTIONS(855), 1,
anon_sym_DOLLAR,
STATE(817), 1,
sym_variable,
STATE(610), 2,
sym__escape_encoded,
sym__escape_semicolon,
STATE(313), 3,
sym_escape_sequence,
sym_variable_ref,
aux_sym_variable_repeat1,
STATE(606), 3,
sym_normal_var,
sym_env_var,
sym_cache_var,
ACTIONS(851), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[17516] = 4,
ACTIONS(874), 1,
anon_sym_DOLLAR,
ACTIONS(877), 1,
aux_sym__unquoted_text_token1,
STATE(318), 1,
aux_sym__unquoted_text_repeat1,
ACTIONS(872), 13,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17541] = 6,
ACTIONS(880), 1,
anon_sym_LBRACE,
ACTIONS(882), 1,
anon_sym_ENV,
ACTIONS(884), 1,
anon_sym_CACHE,
ACTIONS(886), 1,
anon_sym_LT,
ACTIONS(849), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(839), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[17570] = 2,
ACTIONS(890), 1,
aux_sym__unquoted_text_token1,
ACTIONS(888), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17590] = 2,
ACTIONS(894), 1,
aux_sym__unquoted_text_token1,
ACTIONS(892), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17610] = 2,
ACTIONS(898), 1,
aux_sym__unquoted_text_token1,
ACTIONS(896), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17630] = 2,
ACTIONS(902), 1,
aux_sym__unquoted_text_token1,
ACTIONS(900), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17650] = 2,
ACTIONS(906), 1,
aux_sym__unquoted_text_token1,
ACTIONS(904), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17670] = 2,
ACTIONS(910), 1,
aux_sym__unquoted_text_token1,
ACTIONS(908), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17690] = 2,
ACTIONS(914), 1,
aux_sym__unquoted_text_token1,
ACTIONS(912), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17710] = 2,
ACTIONS(918), 1,
aux_sym__unquoted_text_token1,
ACTIONS(916), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17730] = 2,
ACTIONS(922), 1,
aux_sym__unquoted_text_token1,
ACTIONS(920), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17750] = 2,
ACTIONS(926), 1,
aux_sym__unquoted_text_token1,
ACTIONS(924), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17770] = 2,
ACTIONS(930), 1,
aux_sym__unquoted_text_token1,
ACTIONS(928), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17790] = 2,
ACTIONS(934), 1,
aux_sym__unquoted_text_token1,
ACTIONS(932), 14,
sym_bracket_argument,
sym_bracket_comment,
sym_line_comment,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
aux_sym__untrimmed_argument_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_DQUOTE,
[17810] = 6,
ACTIONS(849), 1,
aux_sym__unquoted_text_token1,
ACTIONS(936), 1,
anon_sym_LBRACE,
ACTIONS(938), 1,
anon_sym_ENV,
ACTIONS(940), 1,
anon_sym_CACHE,
ACTIONS(942), 1,
anon_sym_LT,
ACTIONS(839), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[17837] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17855] = 6,
ACTIONS(948), 1,
anon_sym_LBRACE,
ACTIONS(950), 1,
anon_sym_ENV,
ACTIONS(952), 1,
anon_sym_CACHE,
ACTIONS(954), 1,
anon_sym_LT,
ACTIONS(849), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(839), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[17881] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17899] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17917] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17935] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17953] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17971] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[17989] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18007] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18025] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18043] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18061] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18079] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18097] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18115] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18133] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18151] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18169] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18187] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18205] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18223] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18241] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18259] = 2,
ACTIONS(1040), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1042), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18277] = 2,
ACTIONS(1044), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1046), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18295] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18313] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18331] = 5,
ACTIONS(1056), 1,
anon_sym_DOLLAR,
ACTIONS(1059), 1,
aux_sym__gen_exp_arguments_token1,
ACTIONS(1061), 1,
aux_sym__unquoted_text_token1,
STATE(360), 1,
aux_sym__unquoted_text_repeat1,
ACTIONS(872), 9,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_GT,
anon_sym_DQUOTE,
[18355] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18373] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18391] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18409] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18427] = 6,
ACTIONS(849), 1,
aux_sym__unquoted_text_token1,
ACTIONS(1080), 1,
anon_sym_LBRACE,
ACTIONS(1082), 1,
anon_sym_ENV,
ACTIONS(1084), 1,
anon_sym_CACHE,
ACTIONS(1086), 1,
anon_sym_LT,
ACTIONS(839), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[18453] = 2,
ACTIONS(1088), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1090), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18471] = 2,
ACTIONS(1092), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1094), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18489] = 2,
ACTIONS(1096), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1098), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18507] = 2,
ACTIONS(1100), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1102), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18525] = 2,
ACTIONS(1104), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1106), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18543] = 2,
ACTIONS(1108), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1110), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18561] = 6,
ACTIONS(1114), 1,
anon_sym_LBRACE,
ACTIONS(1116), 1,
anon_sym_ENV,
ACTIONS(1118), 1,
anon_sym_CACHE,
ACTIONS(1120), 1,
anon_sym_LT,
ACTIONS(1122), 1,
aux_sym__quoted_text_token1,
ACTIONS(1112), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[18587] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18605] = 2,
ACTIONS(1128), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1130), 10,
sym_if,
sym_elseif,
sym_else,
sym_endif,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18623] = 2,
ACTIONS(894), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(892), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18640] = 3,
ACTIONS(1134), 1,
aux_sym__gen_exp_arguments_token1,
ACTIONS(1136), 1,
aux_sym__unquoted_text_token1,
ACTIONS(1132), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18659] = 2,
ACTIONS(918), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(916), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18676] = 2,
ACTIONS(898), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(896), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18693] = 2,
ACTIONS(910), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(908), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18710] = 2,
ACTIONS(930), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(928), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18727] = 2,
ACTIONS(890), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(888), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18744] = 2,
ACTIONS(902), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(900), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18761] = 2,
ACTIONS(922), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(920), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18778] = 2,
ACTIONS(926), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(924), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18795] = 2,
ACTIONS(934), 2,
aux_sym__gen_exp_arguments_token1,
aux_sym__unquoted_text_token1,
ACTIONS(932), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18812] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18828] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18844] = 2,
ACTIONS(1068), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[18860] = 2,
ACTIONS(1138), 1,
aux_sym__unquoted_text_token1,
ACTIONS(701), 10,
sym_bracket_argument,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_DQUOTE,
[18876] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18892] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18908] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18924] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18940] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18956] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[18972] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[18988] = 2,
ACTIONS(1072), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19004] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19020] = 2,
ACTIONS(1076), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19036] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19052] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19068] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19084] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19100] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19116] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19132] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19148] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19164] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19180] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19196] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19212] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19228] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19244] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19260] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19276] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19292] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19308] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19324] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19340] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19356] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19372] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19388] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19404] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19420] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19436] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19452] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19468] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19484] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19500] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19516] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19532] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_endmacro,
sym_block,
sym_identifier,
[19548] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19564] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[19580] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19596] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19612] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19628] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19644] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19660] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19676] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19692] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19708] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19724] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19740] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19756] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19772] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19788] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19804] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19820] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19836] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19852] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19868] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19884] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19900] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19916] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19932] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19948] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19964] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19980] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[19996] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[20012] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_endblock,
sym_identifier,
[20028] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20044] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20060] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20076] = 2,
ACTIONS(1052), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20092] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20108] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20124] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20140] = 4,
ACTIONS(1140), 1,
anon_sym_DOLLAR,
ACTIONS(1143), 1,
aux_sym__unquoted_text_token1,
STATE(469), 1,
aux_sym__unquoted_text_repeat1,
ACTIONS(872), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_GT,
anon_sym_COLON,
[20160] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20176] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20192] = 2,
ACTIONS(976), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20208] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20224] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20240] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20256] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20272] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20288] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20304] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20320] = 2,
ACTIONS(944), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20336] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20352] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20368] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20384] = 2,
ACTIONS(1124), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20400] = 2,
ACTIONS(956), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20416] = 2,
ACTIONS(1048), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20432] = 2,
ACTIONS(960), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20448] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20464] = 2,
ACTIONS(964), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20480] = 2,
ACTIONS(968), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20496] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20512] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20528] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20544] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20560] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20576] = 2,
ACTIONS(972), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20592] = 2,
ACTIONS(1064), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20608] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20624] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20640] = 2,
ACTIONS(944), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(946), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20656] = 2,
ACTIONS(1048), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1050), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20672] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20688] = 2,
ACTIONS(976), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(978), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20704] = 2,
ACTIONS(1068), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1070), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20720] = 2,
ACTIONS(1072), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1074), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20736] = 2,
ACTIONS(1036), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20752] = 2,
ACTIONS(1076), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1078), 8,
sym_if,
sym_foreach,
sym_while,
sym_endwhile,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20768] = 2,
ACTIONS(1036), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1038), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20784] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20800] = 2,
ACTIONS(1032), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20816] = 2,
ACTIONS(1028), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20832] = 2,
ACTIONS(1032), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1034), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20848] = 2,
ACTIONS(1028), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1030), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20864] = 2,
ACTIONS(1024), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20880] = 2,
ACTIONS(1020), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20896] = 2,
ACTIONS(1016), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20912] = 2,
ACTIONS(980), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20928] = 2,
ACTIONS(1024), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1026), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20944] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[20960] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20976] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[20992] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21008] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21024] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21040] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21056] = 2,
ACTIONS(1012), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21072] = 2,
ACTIONS(984), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21088] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21104] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21120] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21136] = 2,
ACTIONS(1008), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21152] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21168] = 2,
ACTIONS(1020), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1022), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21184] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21200] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21216] = 2,
ACTIONS(1016), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1018), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21232] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21248] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21264] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21280] = 2,
ACTIONS(980), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(982), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21296] = 2,
ACTIONS(1064), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1066), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21312] = 2,
ACTIONS(972), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(974), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21328] = 2,
ACTIONS(968), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(970), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21344] = 2,
ACTIONS(988), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21360] = 2,
ACTIONS(1004), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21376] = 2,
ACTIONS(964), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(966), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21392] = 2,
ACTIONS(960), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(962), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21408] = 2,
ACTIONS(956), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(958), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21424] = 2,
ACTIONS(1000), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21440] = 2,
ACTIONS(992), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21456] = 2,
ACTIONS(996), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21472] = 2,
ACTIONS(1000), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1002), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21488] = 2,
ACTIONS(1004), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1006), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21504] = 2,
ACTIONS(1124), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1126), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21520] = 2,
ACTIONS(984), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(986), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21536] = 2,
ACTIONS(996), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(998), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21552] = 2,
ACTIONS(1012), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1014), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21568] = 2,
ACTIONS(988), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(990), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21584] = 2,
ACTIONS(1008), 4,
sym_bracket_comment,
sym_line_comment,
ts_builtin_sym_end,
aux_sym__untrimmed_argument_token1,
ACTIONS(1010), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21600] = 2,
ACTIONS(1052), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1054), 8,
sym_if,
sym_foreach,
sym_endforeach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21616] = 2,
ACTIONS(992), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(994), 8,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_endfunction,
sym_macro,
sym_block,
sym_identifier,
[21632] = 2,
ACTIONS(1146), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1148), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21647] = 2,
ACTIONS(1150), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1152), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21662] = 2,
ACTIONS(930), 1,
aux_sym__unquoted_text_token1,
ACTIONS(928), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21677] = 2,
ACTIONS(926), 1,
aux_sym__unquoted_text_token1,
ACTIONS(924), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21692] = 2,
ACTIONS(1154), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1156), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21707] = 2,
ACTIONS(1158), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1160), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21722] = 2,
ACTIONS(1162), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1164), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21737] = 2,
ACTIONS(1166), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1168), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21752] = 2,
ACTIONS(1170), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1172), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21767] = 4,
ACTIONS(1174), 1,
anon_sym_DOLLAR,
ACTIONS(1177), 1,
aux_sym__unquoted_text_token1,
STATE(571), 1,
aux_sym__unquoted_text_repeat1,
ACTIONS(872), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_RPAREN,
[21786] = 2,
ACTIONS(894), 1,
aux_sym__unquoted_text_token1,
ACTIONS(892), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21801] = 2,
ACTIONS(902), 1,
aux_sym__unquoted_text_token1,
ACTIONS(900), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21816] = 2,
ACTIONS(1180), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1182), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21831] = 2,
ACTIONS(1184), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1186), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21846] = 5,
ACTIONS(1059), 1,
aux_sym_endwhile_command_token1,
ACTIONS(1188), 1,
anon_sym_DOLLAR,
ACTIONS(1191), 1,
aux_sym__unquoted_text_token1,
STATE(576), 1,
aux_sym__unquoted_text_repeat1,
ACTIONS(872), 6,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
[21867] = 2,
ACTIONS(1194), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1196), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21882] = 2,
ACTIONS(1198), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1200), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21897] = 2,
ACTIONS(890), 1,
aux_sym__unquoted_text_token1,
ACTIONS(888), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21912] = 2,
ACTIONS(934), 1,
aux_sym__unquoted_text_token1,
ACTIONS(932), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21927] = 2,
ACTIONS(1202), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1204), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21942] = 2,
ACTIONS(1206), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1208), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[21957] = 4,
ACTIONS(1212), 1,
anon_sym_DOLLAR,
ACTIONS(1215), 1,
aux_sym__quoted_text_token1,
STATE(583), 1,
aux_sym__quoted_text_repeat1,
ACTIONS(1210), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DQUOTE,
[21976] = 2,
ACTIONS(922), 1,
aux_sym__unquoted_text_token1,
ACTIONS(920), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_GT,
anon_sym_COLON,
[21991] = 2,
ACTIONS(1218), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1220), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[22006] = 2,
ACTIONS(1222), 3,
sym_bracket_comment,
sym_line_comment,
aux_sym__untrimmed_argument_token1,
ACTIONS(1224), 7,
sym_if,
sym_foreach,
sym_while,
sym_function,
sym_macro,
sym_block,
sym_identifier,
[22021] = 1,
ACTIONS(924), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
[22033] = 2,
ACTIONS(894), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(892), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22047] = 2,
ACTIONS(926), 1,
aux_sym__quoted_text_token1,
ACTIONS(924), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22061] = 2,
ACTIONS(934), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(932), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22075] = 2,
ACTIONS(930), 1,
aux_sym__unquoted_text_token1,
ACTIONS(928), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22089] = 2,
ACTIONS(890), 1,
aux_sym__unquoted_text_token1,
ACTIONS(888), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22103] = 2,
ACTIONS(922), 1,
aux_sym__quoted_text_token1,
ACTIONS(920), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22117] = 2,
ACTIONS(926), 1,
aux_sym__unquoted_text_token1,
ACTIONS(924), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22131] = 1,
ACTIONS(892), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
[22143] = 2,
ACTIONS(902), 1,
aux_sym__quoted_text_token1,
ACTIONS(900), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22157] = 2,
ACTIONS(894), 1,
aux_sym__quoted_text_token1,
ACTIONS(892), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22171] = 2,
ACTIONS(902), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(900), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22185] = 1,
ACTIONS(920), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
[22197] = 2,
ACTIONS(934), 1,
aux_sym__quoted_text_token1,
ACTIONS(932), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22211] = 2,
ACTIONS(902), 1,
aux_sym__unquoted_text_token1,
ACTIONS(900), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22225] = 2,
ACTIONS(922), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(920), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22239] = 2,
ACTIONS(894), 1,
aux_sym__unquoted_text_token1,
ACTIONS(892), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22253] = 2,
ACTIONS(926), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(924), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22267] = 2,
ACTIONS(934), 1,
aux_sym__unquoted_text_token1,
ACTIONS(932), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22281] = 1,
ACTIONS(888), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
[22293] = 2,
ACTIONS(890), 1,
aux_sym__quoted_text_token1,
ACTIONS(888), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22307] = 2,
ACTIONS(890), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(888), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22321] = 2,
ACTIONS(930), 2,
aux_sym__unquoted_text_token1,
aux_sym_endwhile_command_token1,
ACTIONS(928), 7,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
[22335] = 1,
ACTIONS(928), 9,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
aux_sym_variable_token1,
anon_sym_DOLLAR,
anon_sym_RBRACE,
[22347] = 2,
ACTIONS(922), 1,
aux_sym__unquoted_text_token1,
ACTIONS(920), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_RPAREN,
[22361] = 2,
ACTIONS(930), 1,
aux_sym__quoted_text_token1,
ACTIONS(928), 8,
sym__escape_identity,
anon_sym_BSLASHt,
anon_sym_BSLASHr,
anon_sym_BSLASHn,
anon_sym_SEMI,
anon_sym_BSLASH_SEMI,
anon_sym_DOLLAR,
anon_sym_DQUOTE,
[22375] = 3,
ACTIONS(1226), 1,
anon_sym_LPAREN,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22385] = 3,
ACTIONS(1230), 1,
anon_sym_LPAREN,
ACTIONS(1232), 1,
aux_sym_if_command_token1,
STATE(659), 1,
aux_sym_if_command_repeat1,
[22395] = 1,
ACTIONS(896), 3,
anon_sym_GT,
anon_sym_COLON,
anon_sym_RPAREN,
[22401] = 3,
ACTIONS(1234), 1,
anon_sym_LPAREN,
ACTIONS(1236), 1,
aux_sym_if_command_token1,
STATE(625), 1,
aux_sym_if_command_repeat1,
[22411] = 3,
ACTIONS(1238), 1,
anon_sym_LPAREN,
ACTIONS(1240), 1,
aux_sym_if_command_token1,
STATE(626), 1,
aux_sym_if_command_repeat1,
[22421] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1242), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22431] = 1,
ACTIONS(916), 3,
anon_sym_GT,
anon_sym_COLON,
anon_sym_RPAREN,
[22437] = 3,
ACTIONS(1244), 1,
anon_sym_LPAREN,
ACTIONS(1246), 1,
aux_sym_if_command_token1,
STATE(627), 1,
aux_sym_if_command_repeat1,
[22447] = 3,
ACTIONS(1248), 1,
anon_sym_LPAREN,
ACTIONS(1250), 1,
aux_sym_if_command_token1,
STATE(628), 1,
aux_sym_if_command_repeat1,
[22457] = 3,
ACTIONS(1252), 1,
anon_sym_LPAREN,
ACTIONS(1254), 1,
aux_sym_if_command_token1,
STATE(629), 1,
aux_sym_if_command_repeat1,
[22467] = 3,
ACTIONS(1256), 1,
anon_sym_LPAREN,
ACTIONS(1258), 1,
aux_sym_if_command_token1,
STATE(631), 1,
aux_sym_if_command_repeat1,
[22477] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1260), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22487] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1262), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22497] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1264), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22507] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1266), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22517] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1268), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22527] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1270), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22537] = 1,
ACTIONS(908), 3,
anon_sym_GT,
anon_sym_COLON,
anon_sym_RPAREN,
[22543] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1272), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22553] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1274), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22563] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1276), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22573] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1278), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22583] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1280), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22593] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1282), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22603] = 3,
ACTIONS(1284), 1,
anon_sym_LPAREN,
ACTIONS(1286), 1,
aux_sym_if_command_token1,
STATE(676), 1,
aux_sym_if_command_repeat1,
[22613] = 3,
ACTIONS(1288), 1,
anon_sym_LPAREN,
ACTIONS(1290), 1,
aux_sym_if_command_token1,
STATE(632), 1,
aux_sym_if_command_repeat1,
[22623] = 3,
ACTIONS(1292), 1,
anon_sym_LPAREN,
ACTIONS(1294), 1,
aux_sym_if_command_token1,
STATE(633), 1,
aux_sym_if_command_repeat1,
[22633] = 3,
ACTIONS(1296), 1,
anon_sym_LPAREN,
ACTIONS(1298), 1,
aux_sym_if_command_token1,
STATE(634), 1,
aux_sym_if_command_repeat1,
[22643] = 3,
ACTIONS(1300), 1,
anon_sym_LPAREN,
ACTIONS(1302), 1,
aux_sym_if_command_token1,
STATE(635), 1,
aux_sym_if_command_repeat1,
[22653] = 3,
ACTIONS(1304), 1,
anon_sym_LPAREN,
ACTIONS(1306), 1,
aux_sym_if_command_token1,
STATE(636), 1,
aux_sym_if_command_repeat1,
[22663] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1308), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22673] = 3,
ACTIONS(1310), 1,
anon_sym_LPAREN,
ACTIONS(1312), 1,
aux_sym_if_command_token1,
STATE(643), 1,
aux_sym_if_command_repeat1,
[22683] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1314), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22693] = 3,
ACTIONS(1316), 1,
anon_sym_LPAREN,
ACTIONS(1318), 1,
aux_sym_if_command_token1,
STATE(677), 1,
aux_sym_if_command_repeat1,
[22703] = 3,
ACTIONS(1320), 1,
anon_sym_LPAREN,
ACTIONS(1322), 1,
aux_sym_if_command_token1,
STATE(678), 1,
aux_sym_if_command_repeat1,
[22713] = 3,
ACTIONS(1324), 1,
anon_sym_LPAREN,
ACTIONS(1326), 1,
aux_sym_if_command_token1,
STATE(645), 1,
aux_sym_if_command_repeat1,
[22723] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1328), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22733] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1330), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22743] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1332), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22753] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1334), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22763] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1336), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22773] = 3,
ACTIONS(1338), 1,
anon_sym_LPAREN,
ACTIONS(1340), 1,
aux_sym_if_command_token1,
STATE(649), 1,
aux_sym_if_command_repeat1,
[22783] = 3,
ACTIONS(1342), 1,
anon_sym_LPAREN,
ACTIONS(1344), 1,
aux_sym_if_command_token1,
STATE(650), 1,
aux_sym_if_command_repeat1,
[22793] = 3,
ACTIONS(1346), 1,
anon_sym_LPAREN,
ACTIONS(1348), 1,
aux_sym_if_command_token1,
STATE(651), 1,
aux_sym_if_command_repeat1,
[22803] = 3,
ACTIONS(1350), 1,
anon_sym_LPAREN,
ACTIONS(1352), 1,
aux_sym_if_command_token1,
STATE(652), 1,
aux_sym_if_command_repeat1,
[22813] = 3,
ACTIONS(1354), 1,
anon_sym_LPAREN,
ACTIONS(1356), 1,
aux_sym_if_command_token1,
STATE(653), 1,
aux_sym_if_command_repeat1,
[22823] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1358), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22833] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1360), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22843] = 3,
ACTIONS(1362), 1,
anon_sym_LPAREN,
ACTIONS(1364), 1,
aux_sym_if_command_token1,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22853] = 3,
ACTIONS(1367), 1,
anon_sym_LPAREN,
ACTIONS(1369), 1,
aux_sym_if_command_token1,
STATE(660), 1,
aux_sym_if_command_repeat1,
[22863] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1371), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22873] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1373), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22883] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1375), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22893] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1377), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22903] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1379), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22913] = 3,
ACTIONS(1381), 1,
anon_sym_LPAREN,
ACTIONS(1383), 1,
aux_sym_if_command_token1,
STATE(663), 1,
aux_sym_if_command_repeat1,
[22923] = 3,
ACTIONS(1385), 1,
anon_sym_LPAREN,
ACTIONS(1387), 1,
aux_sym_if_command_token1,
STATE(664), 1,
aux_sym_if_command_repeat1,
[22933] = 3,
ACTIONS(1389), 1,
anon_sym_LPAREN,
ACTIONS(1391), 1,
aux_sym_if_command_token1,
STATE(665), 1,
aux_sym_if_command_repeat1,
[22943] = 3,
ACTIONS(1393), 1,
anon_sym_LPAREN,
ACTIONS(1395), 1,
aux_sym_if_command_token1,
STATE(666), 1,
aux_sym_if_command_repeat1,
[22953] = 3,
ACTIONS(1397), 1,
anon_sym_LPAREN,
ACTIONS(1399), 1,
aux_sym_if_command_token1,
STATE(667), 1,
aux_sym_if_command_repeat1,
[22963] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1401), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22973] = 3,
ACTIONS(1403), 1,
anon_sym_LPAREN,
ACTIONS(1405), 1,
aux_sym_if_command_token1,
STATE(673), 1,
aux_sym_if_command_repeat1,
[22983] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1407), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[22993] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1409), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23003] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1411), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23013] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1413), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23023] = 3,
ACTIONS(1415), 1,
anon_sym_LPAREN,
ACTIONS(1417), 1,
aux_sym_if_command_token1,
STATE(707), 1,
aux_sym_if_command_repeat1,
[23033] = 3,
ACTIONS(1419), 1,
anon_sym_LPAREN,
ACTIONS(1421), 1,
aux_sym_if_command_token1,
STATE(675), 1,
aux_sym_if_command_repeat1,
[23043] = 3,
ACTIONS(1423), 1,
anon_sym_LPAREN,
ACTIONS(1425), 1,
aux_sym_if_command_token1,
STATE(702), 1,
aux_sym_if_command_repeat1,
[23053] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1427), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23063] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1429), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23073] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1431), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23083] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1433), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23093] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1435), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23103] = 3,
ACTIONS(1437), 1,
anon_sym_LPAREN,
ACTIONS(1439), 1,
aux_sym_if_command_token1,
STATE(682), 1,
aux_sym_if_command_repeat1,
[23113] = 3,
ACTIONS(1441), 1,
anon_sym_LPAREN,
ACTIONS(1443), 1,
aux_sym_if_command_token1,
STATE(683), 1,
aux_sym_if_command_repeat1,
[23123] = 3,
ACTIONS(1445), 1,
anon_sym_LPAREN,
ACTIONS(1447), 1,
aux_sym_if_command_token1,
STATE(684), 1,
aux_sym_if_command_repeat1,
[23133] = 3,
ACTIONS(1449), 1,
anon_sym_LPAREN,
ACTIONS(1451), 1,
aux_sym_if_command_token1,
STATE(685), 1,
aux_sym_if_command_repeat1,
[23143] = 3,
ACTIONS(1453), 1,
anon_sym_LPAREN,
ACTIONS(1455), 1,
aux_sym_if_command_token1,
STATE(686), 1,
aux_sym_if_command_repeat1,
[23153] = 3,
ACTIONS(1457), 1,
anon_sym_GT,
ACTIONS(1459), 1,
anon_sym_COLON,
STATE(812), 1,
sym__gen_exp_arguments,
[23163] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1461), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23173] = 3,
ACTIONS(1463), 1,
anon_sym_LPAREN,
ACTIONS(1465), 1,
aux_sym_if_command_token1,
STATE(693), 1,
aux_sym_if_command_repeat1,
[23183] = 3,
ACTIONS(1467), 1,
anon_sym_LBRACE,
ACTIONS(1469), 1,
anon_sym_ENV,
ACTIONS(1471), 1,
anon_sym_CACHE,
[23193] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1473), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23203] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1475), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23213] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1477), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23223] = 3,
ACTIONS(1479), 1,
anon_sym_LPAREN,
ACTIONS(1481), 1,
aux_sym_if_command_token1,
STATE(618), 1,
aux_sym_if_command_repeat1,
[23233] = 3,
ACTIONS(1483), 1,
anon_sym_LPAREN,
ACTIONS(1485), 1,
aux_sym_if_command_token1,
STATE(697), 1,
aux_sym_if_command_repeat1,
[23243] = 3,
ACTIONS(1487), 1,
anon_sym_LPAREN,
ACTIONS(1489), 1,
aux_sym_if_command_token1,
STATE(696), 1,
aux_sym_if_command_repeat1,
[23253] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1491), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23263] = 3,
ACTIONS(1493), 1,
anon_sym_LPAREN,
ACTIONS(1495), 1,
aux_sym_if_command_token1,
STATE(698), 1,
aux_sym_if_command_repeat1,
[23273] = 3,
ACTIONS(1497), 1,
anon_sym_LPAREN,
ACTIONS(1499), 1,
aux_sym_if_command_token1,
STATE(624), 1,
aux_sym_if_command_repeat1,
[23283] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1501), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23293] = 3,
ACTIONS(1503), 1,
anon_sym_LPAREN,
ACTIONS(1505), 1,
aux_sym_if_command_token1,
STATE(712), 1,
aux_sym_if_command_repeat1,
[23303] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1507), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23313] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1509), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23323] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1511), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23333] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1513), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23343] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1515), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23353] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1517), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23363] = 3,
ACTIONS(1519), 1,
anon_sym_LPAREN,
ACTIONS(1521), 1,
aux_sym_if_command_token1,
STATE(714), 1,
aux_sym_if_command_repeat1,
[23373] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1523), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23383] = 3,
ACTIONS(1525), 1,
anon_sym_LPAREN,
ACTIONS(1527), 1,
aux_sym_if_command_token1,
STATE(721), 1,
aux_sym_if_command_repeat1,
[23393] = 3,
ACTIONS(1529), 1,
anon_sym_LPAREN,
ACTIONS(1531), 1,
aux_sym_if_command_token1,
STATE(722), 1,
aux_sym_if_command_repeat1,
[23403] = 3,
ACTIONS(1533), 1,
anon_sym_LPAREN,
ACTIONS(1535), 1,
aux_sym_if_command_token1,
STATE(723), 1,
aux_sym_if_command_repeat1,
[23413] = 3,
ACTIONS(1537), 1,
anon_sym_LPAREN,
ACTIONS(1539), 1,
aux_sym_if_command_token1,
STATE(724), 1,
aux_sym_if_command_repeat1,
[23423] = 3,
ACTIONS(1541), 1,
anon_sym_LPAREN,
ACTIONS(1543), 1,
aux_sym_if_command_token1,
STATE(725), 1,
aux_sym_if_command_repeat1,
[23433] = 3,
ACTIONS(1545), 1,
anon_sym_LPAREN,
ACTIONS(1547), 1,
aux_sym_if_command_token1,
STATE(705), 1,
aux_sym_if_command_repeat1,
[23443] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1549), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23453] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1551), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23463] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1553), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23473] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1555), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23483] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1557), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23493] = 3,
ACTIONS(1559), 1,
anon_sym_LPAREN,
ACTIONS(1561), 1,
aux_sym_if_command_token1,
STATE(708), 1,
aux_sym_if_command_repeat1,
[23503] = 3,
ACTIONS(1563), 1,
anon_sym_LPAREN,
ACTIONS(1565), 1,
aux_sym_if_command_token1,
STATE(709), 1,
aux_sym_if_command_repeat1,
[23513] = 3,
ACTIONS(1567), 1,
anon_sym_LPAREN,
ACTIONS(1569), 1,
aux_sym_if_command_token1,
STATE(710), 1,
aux_sym_if_command_repeat1,
[23523] = 3,
ACTIONS(1571), 1,
anon_sym_LPAREN,
ACTIONS(1573), 1,
aux_sym_if_command_token1,
STATE(711), 1,
aux_sym_if_command_repeat1,
[23533] = 3,
ACTIONS(1575), 1,
anon_sym_LPAREN,
ACTIONS(1577), 1,
aux_sym_if_command_token1,
STATE(732), 1,
aux_sym_if_command_repeat1,
[23543] = 3,
ACTIONS(1579), 1,
anon_sym_LPAREN,
ACTIONS(1581), 1,
aux_sym_if_command_token1,
STATE(613), 1,
aux_sym_if_command_repeat1,
[23553] = 3,
ACTIONS(1228), 1,
aux_sym_if_command_token1,
ACTIONS(1583), 1,
anon_sym_LPAREN,
STATE(661), 1,
aux_sym_if_command_repeat1,
[23563] = 2,
ACTIONS(1585), 1,
sym_endfunction,
STATE(478), 1,
sym_endfunction_command,
[23570] = 2,
ACTIONS(1587), 1,
sym_endfunction,
STATE(537), 1,
sym_endfunction_command,
[23577] = 2,
ACTIONS(1589), 1,
sym_endmacro,
STATE(538), 1,
sym_endmacro_command,
[23584] = 2,
ACTIONS(1591), 1,
sym_endwhile,
STATE(546), 1,
sym_endwhile_command,
[23591] = 2,
ACTIONS(1593), 1,
sym_endfunction,
STATE(543), 1,
sym_endfunction_command,
[23598] = 2,
ACTIONS(1595), 1,
sym_endblock,
STATE(539), 1,
sym_endblock_command,
[23605] = 2,
ACTIONS(1597), 1,
sym_endforeach,
STATE(403), 1,
sym_endforeach_command,
[23612] = 2,
ACTIONS(1599), 1,
sym_endwhile,
STATE(404), 1,
sym_endwhile_command,
[23619] = 2,
ACTIONS(1601), 1,
sym_endmacro,
STATE(542), 1,
sym_endmacro_command,
[23626] = 2,
ACTIONS(1603), 1,
sym_endblock,
STATE(541), 1,
sym_endblock_command,
[23633] = 2,
ACTIONS(1605), 1,
sym_endfunction,
STATE(405), 1,
sym_endfunction_command,
[23640] = 2,
ACTIONS(1607), 1,
sym_endmacro,
STATE(406), 1,
sym_endmacro_command,
[23647] = 2,
ACTIONS(1609), 1,
anon_sym_RPAREN,
ACTIONS(1611), 1,
aux_sym_endwhile_command_token1,
[23654] = 2,
ACTIONS(1613), 1,
sym_endblock,
STATE(407), 1,
sym_endblock_command,
[23661] = 2,
ACTIONS(1615), 1,
anon_sym_RPAREN,
ACTIONS(1617), 1,
aux_sym_endwhile_command_token1,
[23668] = 2,
ACTIONS(1619), 1,
sym_endforeach,
STATE(336), 1,
sym_endforeach_command,
[23675] = 2,
ACTIONS(1621), 1,
sym_endwhile,
STATE(532), 1,
sym_endwhile_command,
[23682] = 2,
ACTIONS(1623), 1,
sym_endforeach,
STATE(529), 1,
sym_endforeach_command,
[23689] = 2,
ACTIONS(1625), 1,
anon_sym_RPAREN,
ACTIONS(1627), 1,
aux_sym_endwhile_command_token1,
[23696] = 2,
ACTIONS(1629), 1,
sym_endwhile,
STATE(337), 1,
sym_endwhile_command,
[23703] = 2,
ACTIONS(1631), 1,
sym_endforeach,
STATE(487), 1,
sym_endforeach_command,
[23710] = 2,
ACTIONS(1633), 1,
anon_sym_RPAREN,
ACTIONS(1635), 1,
aux_sym_endwhile_command_token1,
[23717] = 2,
ACTIONS(1637), 1,
sym_endwhile,
STATE(489), 1,
sym_endwhile_command,
[23724] = 2,
ACTIONS(1639), 1,
sym_endfunction,
STATE(490), 1,
sym_endfunction_command,
[23731] = 2,
ACTIONS(1641), 1,
sym_endmacro,
STATE(496), 1,
sym_endmacro_command,
[23738] = 2,
ACTIONS(1643), 1,
anon_sym_RPAREN,
ACTIONS(1645), 1,
aux_sym_endwhile_command_token1,
[23745] = 2,
ACTIONS(1647), 1,
sym_endblock,
STATE(497), 1,
sym_endblock_command,
[23752] = 2,
ACTIONS(1649), 1,
anon_sym_RPAREN,
ACTIONS(1651), 1,
aux_sym_endwhile_command_token1,
[23759] = 2,
ACTIONS(1653), 1,
anon_sym_RPAREN,
ACTIONS(1655), 1,
aux_sym_endwhile_command_token1,
[23766] = 2,
ACTIONS(1657), 1,
sym_endfunction,
STATE(338), 1,
sym_endfunction_command,
[23773] = 2,
ACTIONS(1659), 1,
anon_sym_RPAREN,
ACTIONS(1661), 1,
aux_sym_endwhile_command_token1,
[23780] = 2,
ACTIONS(1663), 1,
anon_sym_RPAREN,
ACTIONS(1665), 1,
aux_sym_endwhile_command_token1,
[23787] = 2,
ACTIONS(1667), 1,
sym_endmacro,
STATE(339), 1,
sym_endmacro_command,
[23794] = 2,
ACTIONS(1669), 1,
sym_endblock,
STATE(361), 1,
sym_endblock_command,
[23801] = 2,
ACTIONS(1671), 1,
sym_endmacro,
STATE(477), 1,
sym_endmacro_command,
[23808] = 2,
ACTIONS(1673), 1,
sym_endblock,
STATE(440), 1,
sym_endblock_command,
[23815] = 2,
ACTIONS(1675), 1,
sym_endmacro,
STATE(439), 1,
sym_endmacro_command,
[23822] = 2,
ACTIONS(1677), 1,
sym_endfunction,
STATE(438), 1,
sym_endfunction_command,
[23829] = 2,
ACTIONS(1679), 1,
sym_endwhile,
STATE(437), 1,
sym_endwhile_command,
[23836] = 2,
ACTIONS(1681), 1,
anon_sym_RPAREN,
ACTIONS(1683), 1,
aux_sym_endwhile_command_token1,
[23843] = 2,
ACTIONS(1685), 1,
sym_endforeach,
STATE(436), 1,
sym_endforeach_command,
[23850] = 2,
ACTIONS(1687), 1,
anon_sym_RPAREN,
ACTIONS(1689), 1,
aux_sym_endwhile_command_token1,
[23857] = 2,
ACTIONS(1691), 1,
anon_sym_RPAREN,
ACTIONS(1693), 1,
aux_sym_endwhile_command_token1,
[23864] = 2,
ACTIONS(1695), 1,
sym_endblock,
STATE(476), 1,
sym_endblock_command,
[23871] = 2,
ACTIONS(1697), 1,
anon_sym_RPAREN,
ACTIONS(1699), 1,
aux_sym_endwhile_command_token1,
[23878] = 2,
ACTIONS(1701), 1,
sym_endforeach,
STATE(547), 1,
sym_endforeach_command,
[23885] = 2,
ACTIONS(1703), 1,
sym_endforeach,
STATE(481), 1,
sym_endforeach_command,
[23892] = 2,
ACTIONS(1705), 1,
anon_sym_RPAREN,
ACTIONS(1707), 1,
aux_sym_endwhile_command_token1,
[23899] = 2,
ACTIONS(1709), 1,
sym_endwhile,
STATE(479), 1,
sym_endwhile_command,
[23906] = 1,
ACTIONS(1711), 1,
anon_sym_RPAREN,
[23910] = 1,
ACTIONS(1713), 1,
anon_sym_RBRACE,
[23914] = 1,
ACTIONS(916), 1,
aux_sym_endwhile_command_token1,
[23918] = 1,
ACTIONS(896), 1,
aux_sym_endwhile_command_token1,
[23922] = 1,
ACTIONS(1715), 1,
anon_sym_RBRACE,
[23926] = 1,
ACTIONS(1717), 1,
anon_sym_RBRACE,
[23930] = 1,
ACTIONS(1719), 1,
anon_sym_RPAREN,
[23934] = 1,
ACTIONS(1721), 1,
anon_sym_RPAREN,
[23938] = 1,
ACTIONS(1723), 1,
aux_sym_endwhile_command_token1,
[23942] = 1,
ACTIONS(1725), 1,
aux_sym_endwhile_command_token1,
[23946] = 1,
ACTIONS(1727), 1,
anon_sym_RPAREN,
[23950] = 1,
ACTIONS(750), 1,
anon_sym_RPAREN,
[23954] = 1,
ACTIONS(748), 1,
anon_sym_RPAREN,
[23958] = 1,
ACTIONS(1729), 1,
anon_sym_GT,
[23962] = 1,
ACTIONS(1731), 1,
anon_sym_RPAREN,
[23966] = 1,
ACTIONS(1733), 1,
anon_sym_RPAREN,
[23970] = 1,
ACTIONS(1735), 1,
anon_sym_DQUOTE,
[23974] = 1,
ACTIONS(1737), 1,
anon_sym_RBRACE,
[23978] = 1,
ACTIONS(1739), 1,
anon_sym_RBRACE,
[23982] = 1,
ACTIONS(1741), 1,
aux_sym_endwhile_command_token1,
[23986] = 1,
ACTIONS(1743), 1,
aux_sym_endwhile_command_token1,
[23990] = 1,
ACTIONS(1745), 1,
anon_sym_DQUOTE,
[23994] = 1,
ACTIONS(1747), 1,
anon_sym_DQUOTE,
[23998] = 1,
ACTIONS(908), 1,
aux_sym_endwhile_command_token1,
[24002] = 1,
ACTIONS(1749), 1,
anon_sym_RBRACE,
[24006] = 1,
ACTIONS(732), 1,
anon_sym_RPAREN,
[24010] = 1,
ACTIONS(1751), 1,
anon_sym_RBRACE,
[24014] = 1,
ACTIONS(1753), 1,
anon_sym_GT,
[24018] = 1,
ACTIONS(1755), 1,
anon_sym_RBRACE,
[24022] = 1,
ACTIONS(1757), 1,
anon_sym_RBRACE,
[24026] = 1,
ACTIONS(1759), 1,
anon_sym_GT,
[24030] = 1,
ACTIONS(1761), 1,
anon_sym_GT,
[24034] = 1,
ACTIONS(742), 1,
anon_sym_RPAREN,
[24038] = 1,
ACTIONS(1763), 1,
anon_sym_RBRACE,
[24042] = 1,
ACTIONS(1765), 1,
anon_sym_RBRACE,
[24046] = 1,
ACTIONS(1767), 1,
anon_sym_RBRACE,
[24050] = 1,
ACTIONS(1769), 1,
anon_sym_RBRACE,
[24054] = 1,
ACTIONS(740), 1,
anon_sym_RPAREN,
[24058] = 1,
ACTIONS(1771), 1,
anon_sym_RPAREN,
[24062] = 1,
ACTIONS(1773), 1,
anon_sym_GT,
[24066] = 1,
ACTIONS(1775), 1,
anon_sym_RBRACE,
[24070] = 1,
ACTIONS(1777), 1,
anon_sym_RPAREN,
[24074] = 1,
ACTIONS(1779), 1,
aux_sym_endwhile_command_token1,
[24078] = 1,
ACTIONS(1781), 1,
aux_sym_endwhile_command_token1,
[24082] = 1,
ACTIONS(1783), 1,
anon_sym_RBRACE,
[24086] = 1,
ACTIONS(1785), 1,
anon_sym_RBRACE,
[24090] = 1,
ACTIONS(1787), 1,
anon_sym_LBRACE,
[24094] = 1,
ACTIONS(1789), 1,
aux_sym_endwhile_command_token1,
[24098] = 1,
ACTIONS(1791), 1,
aux_sym_endwhile_command_token1,
[24102] = 1,
ACTIONS(1793), 1,
anon_sym_RBRACE,
[24106] = 1,
ACTIONS(1795), 1,
anon_sym_RPAREN,
[24110] = 1,
ACTIONS(1797), 1,
aux_sym_endwhile_command_token1,
[24114] = 1,
ACTIONS(1799), 1,
anon_sym_RPAREN,
[24118] = 1,
ACTIONS(1801), 1,
anon_sym_RPAREN,
[24122] = 1,
ACTIONS(1803), 1,
anon_sym_RPAREN,
[24126] = 1,
ACTIONS(1805), 1,
anon_sym_RPAREN,
[24130] = 1,
ACTIONS(1807), 1,
anon_sym_RPAREN,
[24134] = 1,
ACTIONS(1809), 1,
aux_sym_endwhile_command_token1,
[24138] = 1,
ACTIONS(722), 1,
anon_sym_RPAREN,
[24142] = 1,
ACTIONS(1811), 1,
anon_sym_RPAREN,
[24146] = 1,
ACTIONS(1813), 1,
anon_sym_GT,
[24150] = 1,
ACTIONS(1815), 1,
anon_sym_RBRACE,
[24154] = 1,
ACTIONS(1817), 1,
anon_sym_LBRACE,
[24158] = 1,
ACTIONS(1819), 1,
anon_sym_DQUOTE,
[24162] = 1,
ACTIONS(1821), 1,
aux_sym_endwhile_command_token1,
[24166] = 1,
ACTIONS(736), 1,
anon_sym_RPAREN,
[24170] = 1,
ACTIONS(1823), 1,
aux_sym_endwhile_command_token1,
[24174] = 1,
ACTIONS(1825), 1,
aux_sym_endwhile_command_token1,
[24178] = 1,
ACTIONS(1827), 1,
anon_sym_LBRACE,
[24182] = 1,
ACTIONS(1829), 1,
anon_sym_LBRACE,
[24186] = 1,
ACTIONS(1831), 1,
aux_sym_endwhile_command_token1,
[24190] = 1,
ACTIONS(1833), 1,
anon_sym_RPAREN,
[24194] = 1,
ACTIONS(1835), 1,
anon_sym_LBRACE,
[24198] = 1,
ACTIONS(1837), 1,
anon_sym_LBRACE,
[24202] = 1,
ACTIONS(1839), 1,
anon_sym_RPAREN,
[24206] = 1,
ACTIONS(1841), 1,
anon_sym_RPAREN,
[24210] = 1,
ACTIONS(1843), 1,
anon_sym_LBRACE,
[24214] = 1,
ACTIONS(1845), 1,
anon_sym_LBRACE,
[24218] = 1,
ACTIONS(1847), 1,
anon_sym_GT,
[24222] = 1,
ACTIONS(1849), 1,
ts_builtin_sym_end,
[24226] = 1,
ACTIONS(1851), 1,
anon_sym_LBRACE,
[24230] = 1,
ACTIONS(1853), 1,
anon_sym_LBRACE,
[24234] = 1,
ACTIONS(1855), 1,
anon_sym_RBRACE,
[24238] = 1,
ACTIONS(1857), 1,
anon_sym_RPAREN,
[24242] = 1,
ACTIONS(1859), 1,
anon_sym_LBRACE,
[24246] = 1,
ACTIONS(1861), 1,
anon_sym_LBRACE,
[24250] = 1,
ACTIONS(1863), 1,
anon_sym_RBRACE,
[24254] = 1,
ACTIONS(1865), 1,
anon_sym_RBRACE,
[24258] = 1,
ACTIONS(1867), 1,
anon_sym_LBRACE,
[24262] = 1,
ACTIONS(1869), 1,
anon_sym_LBRACE,
[24266] = 1,
ACTIONS(1871), 1,
anon_sym_RPAREN,
[24270] = 1,
ACTIONS(1873), 1,
anon_sym_RPAREN,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 75,
[SMALL_STATE(4)] = 150,
[SMALL_STATE(5)] = 225,
[SMALL_STATE(6)] = 300,
[SMALL_STATE(7)] = 375,
[SMALL_STATE(8)] = 450,
[SMALL_STATE(9)] = 525,
[SMALL_STATE(10)] = 600,
[SMALL_STATE(11)] = 675,
[SMALL_STATE(12)] = 750,
[SMALL_STATE(13)] = 825,
[SMALL_STATE(14)] = 900,
[SMALL_STATE(15)] = 975,
[SMALL_STATE(16)] = 1050,
[SMALL_STATE(17)] = 1122,
[SMALL_STATE(18)] = 1181,
[SMALL_STATE(19)] = 1240,
[SMALL_STATE(20)] = 1299,
[SMALL_STATE(21)] = 1358,
[SMALL_STATE(22)] = 1417,
[SMALL_STATE(23)] = 1476,
[SMALL_STATE(24)] = 1535,
[SMALL_STATE(25)] = 1594,
[SMALL_STATE(26)] = 1653,
[SMALL_STATE(27)] = 1712,
[SMALL_STATE(28)] = 1771,
[SMALL_STATE(29)] = 1830,
[SMALL_STATE(30)] = 1889,
[SMALL_STATE(31)] = 1948,
[SMALL_STATE(32)] = 2007,
[SMALL_STATE(33)] = 2066,
[SMALL_STATE(34)] = 2125,
[SMALL_STATE(35)] = 2184,
[SMALL_STATE(36)] = 2243,
[SMALL_STATE(37)] = 2302,
[SMALL_STATE(38)] = 2361,
[SMALL_STATE(39)] = 2420,
[SMALL_STATE(40)] = 2479,
[SMALL_STATE(41)] = 2538,
[SMALL_STATE(42)] = 2597,
[SMALL_STATE(43)] = 2656,
[SMALL_STATE(44)] = 2715,
[SMALL_STATE(45)] = 2774,
[SMALL_STATE(46)] = 2833,
[SMALL_STATE(47)] = 2892,
[SMALL_STATE(48)] = 2951,
[SMALL_STATE(49)] = 3010,
[SMALL_STATE(50)] = 3069,
[SMALL_STATE(51)] = 3128,
[SMALL_STATE(52)] = 3187,
[SMALL_STATE(53)] = 3246,
[SMALL_STATE(54)] = 3305,
[SMALL_STATE(55)] = 3364,
[SMALL_STATE(56)] = 3423,
[SMALL_STATE(57)] = 3482,
[SMALL_STATE(58)] = 3541,
[SMALL_STATE(59)] = 3600,
[SMALL_STATE(60)] = 3659,
[SMALL_STATE(61)] = 3718,
[SMALL_STATE(62)] = 3777,
[SMALL_STATE(63)] = 3836,
[SMALL_STATE(64)] = 3895,
[SMALL_STATE(65)] = 3954,
[SMALL_STATE(66)] = 4013,
[SMALL_STATE(67)] = 4072,
[SMALL_STATE(68)] = 4131,
[SMALL_STATE(69)] = 4190,
[SMALL_STATE(70)] = 4249,
[SMALL_STATE(71)] = 4308,
[SMALL_STATE(72)] = 4367,
[SMALL_STATE(73)] = 4426,
[SMALL_STATE(74)] = 4485,
[SMALL_STATE(75)] = 4544,
[SMALL_STATE(76)] = 4603,
[SMALL_STATE(77)] = 4662,
[SMALL_STATE(78)] = 4721,
[SMALL_STATE(79)] = 4780,
[SMALL_STATE(80)] = 4839,
[SMALL_STATE(81)] = 4898,
[SMALL_STATE(82)] = 4957,
[SMALL_STATE(83)] = 5016,
[SMALL_STATE(84)] = 5075,
[SMALL_STATE(85)] = 5134,
[SMALL_STATE(86)] = 5193,
[SMALL_STATE(87)] = 5252,
[SMALL_STATE(88)] = 5311,
[SMALL_STATE(89)] = 5370,
[SMALL_STATE(90)] = 5429,
[SMALL_STATE(91)] = 5488,
[SMALL_STATE(92)] = 5547,
[SMALL_STATE(93)] = 5606,
[SMALL_STATE(94)] = 5665,
[SMALL_STATE(95)] = 5724,
[SMALL_STATE(96)] = 5783,
[SMALL_STATE(97)] = 5842,
[SMALL_STATE(98)] = 5901,
[SMALL_STATE(99)] = 5960,
[SMALL_STATE(100)] = 6019,
[SMALL_STATE(101)] = 6078,
[SMALL_STATE(102)] = 6137,
[SMALL_STATE(103)] = 6196,
[SMALL_STATE(104)] = 6255,
[SMALL_STATE(105)] = 6314,
[SMALL_STATE(106)] = 6373,
[SMALL_STATE(107)] = 6432,
[SMALL_STATE(108)] = 6491,
[SMALL_STATE(109)] = 6550,
[SMALL_STATE(110)] = 6609,
[SMALL_STATE(111)] = 6668,
[SMALL_STATE(112)] = 6727,
[SMALL_STATE(113)] = 6786,
[SMALL_STATE(114)] = 6845,
[SMALL_STATE(115)] = 6904,
[SMALL_STATE(116)] = 6963,
[SMALL_STATE(117)] = 7022,
[SMALL_STATE(118)] = 7081,
[SMALL_STATE(119)] = 7140,
[SMALL_STATE(120)] = 7199,
[SMALL_STATE(121)] = 7258,
[SMALL_STATE(122)] = 7317,
[SMALL_STATE(123)] = 7376,
[SMALL_STATE(124)] = 7435,
[SMALL_STATE(125)] = 7494,
[SMALL_STATE(126)] = 7553,
[SMALL_STATE(127)] = 7612,
[SMALL_STATE(128)] = 7671,
[SMALL_STATE(129)] = 7730,
[SMALL_STATE(130)] = 7789,
[SMALL_STATE(131)] = 7848,
[SMALL_STATE(132)] = 7907,
[SMALL_STATE(133)] = 7966,
[SMALL_STATE(134)] = 8025,
[SMALL_STATE(135)] = 8084,
[SMALL_STATE(136)] = 8143,
[SMALL_STATE(137)] = 8202,
[SMALL_STATE(138)] = 8261,
[SMALL_STATE(139)] = 8320,
[SMALL_STATE(140)] = 8379,
[SMALL_STATE(141)] = 8438,
[SMALL_STATE(142)] = 8497,
[SMALL_STATE(143)] = 8556,
[SMALL_STATE(144)] = 8615,
[SMALL_STATE(145)] = 8674,
[SMALL_STATE(146)] = 8733,
[SMALL_STATE(147)] = 8792,
[SMALL_STATE(148)] = 8851,
[SMALL_STATE(149)] = 8910,
[SMALL_STATE(150)] = 8969,
[SMALL_STATE(151)] = 9028,
[SMALL_STATE(152)] = 9087,
[SMALL_STATE(153)] = 9146,
[SMALL_STATE(154)] = 9205,
[SMALL_STATE(155)] = 9264,
[SMALL_STATE(156)] = 9323,
[SMALL_STATE(157)] = 9382,
[SMALL_STATE(158)] = 9441,
[SMALL_STATE(159)] = 9500,
[SMALL_STATE(160)] = 9559,
[SMALL_STATE(161)] = 9618,
[SMALL_STATE(162)] = 9677,
[SMALL_STATE(163)] = 9736,
[SMALL_STATE(164)] = 9795,
[SMALL_STATE(165)] = 9854,
[SMALL_STATE(166)] = 9913,
[SMALL_STATE(167)] = 9972,
[SMALL_STATE(168)] = 10031,
[SMALL_STATE(169)] = 10090,
[SMALL_STATE(170)] = 10149,
[SMALL_STATE(171)] = 10208,
[SMALL_STATE(172)] = 10267,
[SMALL_STATE(173)] = 10326,
[SMALL_STATE(174)] = 10385,
[SMALL_STATE(175)] = 10444,
[SMALL_STATE(176)] = 10503,
[SMALL_STATE(177)] = 10562,
[SMALL_STATE(178)] = 10621,
[SMALL_STATE(179)] = 10680,
[SMALL_STATE(180)] = 10739,
[SMALL_STATE(181)] = 10798,
[SMALL_STATE(182)] = 10857,
[SMALL_STATE(183)] = 10916,
[SMALL_STATE(184)] = 10975,
[SMALL_STATE(185)] = 11034,
[SMALL_STATE(186)] = 11093,
[SMALL_STATE(187)] = 11152,
[SMALL_STATE(188)] = 11211,
[SMALL_STATE(189)] = 11270,
[SMALL_STATE(190)] = 11329,
[SMALL_STATE(191)] = 11388,
[SMALL_STATE(192)] = 11447,
[SMALL_STATE(193)] = 11509,
[SMALL_STATE(194)] = 11571,
[SMALL_STATE(195)] = 11631,
[SMALL_STATE(196)] = 11691,
[SMALL_STATE(197)] = 11751,
[SMALL_STATE(198)] = 11811,
[SMALL_STATE(199)] = 11871,
[SMALL_STATE(200)] = 11931,
[SMALL_STATE(201)] = 11991,
[SMALL_STATE(202)] = 12051,
[SMALL_STATE(203)] = 12111,
[SMALL_STATE(204)] = 12171,
[SMALL_STATE(205)] = 12231,
[SMALL_STATE(206)] = 12291,
[SMALL_STATE(207)] = 12351,
[SMALL_STATE(208)] = 12411,
[SMALL_STATE(209)] = 12471,
[SMALL_STATE(210)] = 12531,
[SMALL_STATE(211)] = 12591,
[SMALL_STATE(212)] = 12651,
[SMALL_STATE(213)] = 12711,
[SMALL_STATE(214)] = 12771,
[SMALL_STATE(215)] = 12831,
[SMALL_STATE(216)] = 12891,
[SMALL_STATE(217)] = 12951,
[SMALL_STATE(218)] = 13011,
[SMALL_STATE(219)] = 13071,
[SMALL_STATE(220)] = 13131,
[SMALL_STATE(221)] = 13191,
[SMALL_STATE(222)] = 13251,
[SMALL_STATE(223)] = 13311,
[SMALL_STATE(224)] = 13371,
[SMALL_STATE(225)] = 13431,
[SMALL_STATE(226)] = 13491,
[SMALL_STATE(227)] = 13551,
[SMALL_STATE(228)] = 13611,
[SMALL_STATE(229)] = 13671,
[SMALL_STATE(230)] = 13731,
[SMALL_STATE(231)] = 13791,
[SMALL_STATE(232)] = 13851,
[SMALL_STATE(233)] = 13911,
[SMALL_STATE(234)] = 13971,
[SMALL_STATE(235)] = 14031,
[SMALL_STATE(236)] = 14091,
[SMALL_STATE(237)] = 14151,
[SMALL_STATE(238)] = 14211,
[SMALL_STATE(239)] = 14271,
[SMALL_STATE(240)] = 14331,
[SMALL_STATE(241)] = 14391,
[SMALL_STATE(242)] = 14442,
[SMALL_STATE(243)] = 14493,
[SMALL_STATE(244)] = 14534,
[SMALL_STATE(245)] = 14585,
[SMALL_STATE(246)] = 14626,
[SMALL_STATE(247)] = 14677,
[SMALL_STATE(248)] = 14728,
[SMALL_STATE(249)] = 14779,
[SMALL_STATE(250)] = 14830,
[SMALL_STATE(251)] = 14881,
[SMALL_STATE(252)] = 14932,
[SMALL_STATE(253)] = 14980,
[SMALL_STATE(254)] = 15028,
[SMALL_STATE(255)] = 15076,
[SMALL_STATE(256)] = 15124,
[SMALL_STATE(257)] = 15172,
[SMALL_STATE(258)] = 15220,
[SMALL_STATE(259)] = 15268,
[SMALL_STATE(260)] = 15316,
[SMALL_STATE(261)] = 15364,
[SMALL_STATE(262)] = 15412,
[SMALL_STATE(263)] = 15460,
[SMALL_STATE(264)] = 15508,
[SMALL_STATE(265)] = 15556,
[SMALL_STATE(266)] = 15604,
[SMALL_STATE(267)] = 15649,
[SMALL_STATE(268)] = 15694,
[SMALL_STATE(269)] = 15739,
[SMALL_STATE(270)] = 15784,
[SMALL_STATE(271)] = 15829,
[SMALL_STATE(272)] = 15874,
[SMALL_STATE(273)] = 15919,
[SMALL_STATE(274)] = 15964,
[SMALL_STATE(275)] = 16009,
[SMALL_STATE(276)] = 16054,
[SMALL_STATE(277)] = 16099,
[SMALL_STATE(278)] = 16144,
[SMALL_STATE(279)] = 16189,
[SMALL_STATE(280)] = 16234,
[SMALL_STATE(281)] = 16274,
[SMALL_STATE(282)] = 16314,
[SMALL_STATE(283)] = 16352,
[SMALL_STATE(284)] = 16388,
[SMALL_STATE(285)] = 16426,
[SMALL_STATE(286)] = 16462,
[SMALL_STATE(287)] = 16500,
[SMALL_STATE(288)] = 16538,
[SMALL_STATE(289)] = 16573,
[SMALL_STATE(290)] = 16608,
[SMALL_STATE(291)] = 16643,
[SMALL_STATE(292)] = 16678,
[SMALL_STATE(293)] = 16713,
[SMALL_STATE(294)] = 16748,
[SMALL_STATE(295)] = 16780,
[SMALL_STATE(296)] = 16812,
[SMALL_STATE(297)] = 16844,
[SMALL_STATE(298)] = 16876,
[SMALL_STATE(299)] = 16908,
[SMALL_STATE(300)] = 16940,
[SMALL_STATE(301)] = 16972,
[SMALL_STATE(302)] = 17004,
[SMALL_STATE(303)] = 17036,
[SMALL_STATE(304)] = 17068,
[SMALL_STATE(305)] = 17100,
[SMALL_STATE(306)] = 17132,
[SMALL_STATE(307)] = 17164,
[SMALL_STATE(308)] = 17196,
[SMALL_STATE(309)] = 17228,
[SMALL_STATE(310)] = 17260,
[SMALL_STATE(311)] = 17292,
[SMALL_STATE(312)] = 17324,
[SMALL_STATE(313)] = 17356,
[SMALL_STATE(314)] = 17388,
[SMALL_STATE(315)] = 17420,
[SMALL_STATE(316)] = 17452,
[SMALL_STATE(317)] = 17484,
[SMALL_STATE(318)] = 17516,
[SMALL_STATE(319)] = 17541,
[SMALL_STATE(320)] = 17570,
[SMALL_STATE(321)] = 17590,
[SMALL_STATE(322)] = 17610,
[SMALL_STATE(323)] = 17630,
[SMALL_STATE(324)] = 17650,
[SMALL_STATE(325)] = 17670,
[SMALL_STATE(326)] = 17690,
[SMALL_STATE(327)] = 17710,
[SMALL_STATE(328)] = 17730,
[SMALL_STATE(329)] = 17750,
[SMALL_STATE(330)] = 17770,
[SMALL_STATE(331)] = 17790,
[SMALL_STATE(332)] = 17810,
[SMALL_STATE(333)] = 17837,
[SMALL_STATE(334)] = 17855,
[SMALL_STATE(335)] = 17881,
[SMALL_STATE(336)] = 17899,
[SMALL_STATE(337)] = 17917,
[SMALL_STATE(338)] = 17935,
[SMALL_STATE(339)] = 17953,
[SMALL_STATE(340)] = 17971,
[SMALL_STATE(341)] = 17989,
[SMALL_STATE(342)] = 18007,
[SMALL_STATE(343)] = 18025,
[SMALL_STATE(344)] = 18043,
[SMALL_STATE(345)] = 18061,
[SMALL_STATE(346)] = 18079,
[SMALL_STATE(347)] = 18097,
[SMALL_STATE(348)] = 18115,
[SMALL_STATE(349)] = 18133,
[SMALL_STATE(350)] = 18151,
[SMALL_STATE(351)] = 18169,
[SMALL_STATE(352)] = 18187,
[SMALL_STATE(353)] = 18205,
[SMALL_STATE(354)] = 18223,
[SMALL_STATE(355)] = 18241,
[SMALL_STATE(356)] = 18259,
[SMALL_STATE(357)] = 18277,
[SMALL_STATE(358)] = 18295,
[SMALL_STATE(359)] = 18313,
[SMALL_STATE(360)] = 18331,
[SMALL_STATE(361)] = 18355,
[SMALL_STATE(362)] = 18373,
[SMALL_STATE(363)] = 18391,
[SMALL_STATE(364)] = 18409,
[SMALL_STATE(365)] = 18427,
[SMALL_STATE(366)] = 18453,
[SMALL_STATE(367)] = 18471,
[SMALL_STATE(368)] = 18489,
[SMALL_STATE(369)] = 18507,
[SMALL_STATE(370)] = 18525,
[SMALL_STATE(371)] = 18543,
[SMALL_STATE(372)] = 18561,
[SMALL_STATE(373)] = 18587,
[SMALL_STATE(374)] = 18605,
[SMALL_STATE(375)] = 18623,
[SMALL_STATE(376)] = 18640,
[SMALL_STATE(377)] = 18659,
[SMALL_STATE(378)] = 18676,
[SMALL_STATE(379)] = 18693,
[SMALL_STATE(380)] = 18710,
[SMALL_STATE(381)] = 18727,
[SMALL_STATE(382)] = 18744,
[SMALL_STATE(383)] = 18761,
[SMALL_STATE(384)] = 18778,
[SMALL_STATE(385)] = 18795,
[SMALL_STATE(386)] = 18812,
[SMALL_STATE(387)] = 18828,
[SMALL_STATE(388)] = 18844,
[SMALL_STATE(389)] = 18860,
[SMALL_STATE(390)] = 18876,
[SMALL_STATE(391)] = 18892,
[SMALL_STATE(392)] = 18908,
[SMALL_STATE(393)] = 18924,
[SMALL_STATE(394)] = 18940,
[SMALL_STATE(395)] = 18956,
[SMALL_STATE(396)] = 18972,
[SMALL_STATE(397)] = 18988,
[SMALL_STATE(398)] = 19004,
[SMALL_STATE(399)] = 19020,
[SMALL_STATE(400)] = 19036,
[SMALL_STATE(401)] = 19052,
[SMALL_STATE(402)] = 19068,
[SMALL_STATE(403)] = 19084,
[SMALL_STATE(404)] = 19100,
[SMALL_STATE(405)] = 19116,
[SMALL_STATE(406)] = 19132,
[SMALL_STATE(407)] = 19148,
[SMALL_STATE(408)] = 19164,
[SMALL_STATE(409)] = 19180,
[SMALL_STATE(410)] = 19196,
[SMALL_STATE(411)] = 19212,
[SMALL_STATE(412)] = 19228,
[SMALL_STATE(413)] = 19244,
[SMALL_STATE(414)] = 19260,
[SMALL_STATE(415)] = 19276,
[SMALL_STATE(416)] = 19292,
[SMALL_STATE(417)] = 19308,
[SMALL_STATE(418)] = 19324,
[SMALL_STATE(419)] = 19340,
[SMALL_STATE(420)] = 19356,
[SMALL_STATE(421)] = 19372,
[SMALL_STATE(422)] = 19388,
[SMALL_STATE(423)] = 19404,
[SMALL_STATE(424)] = 19420,
[SMALL_STATE(425)] = 19436,
[SMALL_STATE(426)] = 19452,
[SMALL_STATE(427)] = 19468,
[SMALL_STATE(428)] = 19484,
[SMALL_STATE(429)] = 19500,
[SMALL_STATE(430)] = 19516,
[SMALL_STATE(431)] = 19532,
[SMALL_STATE(432)] = 19548,
[SMALL_STATE(433)] = 19564,
[SMALL_STATE(434)] = 19580,
[SMALL_STATE(435)] = 19596,
[SMALL_STATE(436)] = 19612,
[SMALL_STATE(437)] = 19628,
[SMALL_STATE(438)] = 19644,
[SMALL_STATE(439)] = 19660,
[SMALL_STATE(440)] = 19676,
[SMALL_STATE(441)] = 19692,
[SMALL_STATE(442)] = 19708,
[SMALL_STATE(443)] = 19724,
[SMALL_STATE(444)] = 19740,
[SMALL_STATE(445)] = 19756,
[SMALL_STATE(446)] = 19772,
[SMALL_STATE(447)] = 19788,
[SMALL_STATE(448)] = 19804,
[SMALL_STATE(449)] = 19820,
[SMALL_STATE(450)] = 19836,
[SMALL_STATE(451)] = 19852,
[SMALL_STATE(452)] = 19868,
[SMALL_STATE(453)] = 19884,
[SMALL_STATE(454)] = 19900,
[SMALL_STATE(455)] = 19916,
[SMALL_STATE(456)] = 19932,
[SMALL_STATE(457)] = 19948,
[SMALL_STATE(458)] = 19964,
[SMALL_STATE(459)] = 19980,
[SMALL_STATE(460)] = 19996,
[SMALL_STATE(461)] = 20012,
[SMALL_STATE(462)] = 20028,
[SMALL_STATE(463)] = 20044,
[SMALL_STATE(464)] = 20060,
[SMALL_STATE(465)] = 20076,
[SMALL_STATE(466)] = 20092,
[SMALL_STATE(467)] = 20108,
[SMALL_STATE(468)] = 20124,
[SMALL_STATE(469)] = 20140,
[SMALL_STATE(470)] = 20160,
[SMALL_STATE(471)] = 20176,
[SMALL_STATE(472)] = 20192,
[SMALL_STATE(473)] = 20208,
[SMALL_STATE(474)] = 20224,
[SMALL_STATE(475)] = 20240,
[SMALL_STATE(476)] = 20256,
[SMALL_STATE(477)] = 20272,
[SMALL_STATE(478)] = 20288,
[SMALL_STATE(479)] = 20304,
[SMALL_STATE(480)] = 20320,
[SMALL_STATE(481)] = 20336,
[SMALL_STATE(482)] = 20352,
[SMALL_STATE(483)] = 20368,
[SMALL_STATE(484)] = 20384,
[SMALL_STATE(485)] = 20400,
[SMALL_STATE(486)] = 20416,
[SMALL_STATE(487)] = 20432,
[SMALL_STATE(488)] = 20448,
[SMALL_STATE(489)] = 20464,
[SMALL_STATE(490)] = 20480,
[SMALL_STATE(491)] = 20496,
[SMALL_STATE(492)] = 20512,
[SMALL_STATE(493)] = 20528,
[SMALL_STATE(494)] = 20544,
[SMALL_STATE(495)] = 20560,
[SMALL_STATE(496)] = 20576,
[SMALL_STATE(497)] = 20592,
[SMALL_STATE(498)] = 20608,
[SMALL_STATE(499)] = 20624,
[SMALL_STATE(500)] = 20640,
[SMALL_STATE(501)] = 20656,
[SMALL_STATE(502)] = 20672,
[SMALL_STATE(503)] = 20688,
[SMALL_STATE(504)] = 20704,
[SMALL_STATE(505)] = 20720,
[SMALL_STATE(506)] = 20736,
[SMALL_STATE(507)] = 20752,
[SMALL_STATE(508)] = 20768,
[SMALL_STATE(509)] = 20784,
[SMALL_STATE(510)] = 20800,
[SMALL_STATE(511)] = 20816,
[SMALL_STATE(512)] = 20832,
[SMALL_STATE(513)] = 20848,
[SMALL_STATE(514)] = 20864,
[SMALL_STATE(515)] = 20880,
[SMALL_STATE(516)] = 20896,
[SMALL_STATE(517)] = 20912,
[SMALL_STATE(518)] = 20928,
[SMALL_STATE(519)] = 20944,
[SMALL_STATE(520)] = 20960,
[SMALL_STATE(521)] = 20976,
[SMALL_STATE(522)] = 20992,
[SMALL_STATE(523)] = 21008,
[SMALL_STATE(524)] = 21024,
[SMALL_STATE(525)] = 21040,
[SMALL_STATE(526)] = 21056,
[SMALL_STATE(527)] = 21072,
[SMALL_STATE(528)] = 21088,
[SMALL_STATE(529)] = 21104,
[SMALL_STATE(530)] = 21120,
[SMALL_STATE(531)] = 21136,
[SMALL_STATE(532)] = 21152,
[SMALL_STATE(533)] = 21168,
[SMALL_STATE(534)] = 21184,
[SMALL_STATE(535)] = 21200,
[SMALL_STATE(536)] = 21216,
[SMALL_STATE(537)] = 21232,
[SMALL_STATE(538)] = 21248,
[SMALL_STATE(539)] = 21264,
[SMALL_STATE(540)] = 21280,
[SMALL_STATE(541)] = 21296,
[SMALL_STATE(542)] = 21312,
[SMALL_STATE(543)] = 21328,
[SMALL_STATE(544)] = 21344,
[SMALL_STATE(545)] = 21360,
[SMALL_STATE(546)] = 21376,
[SMALL_STATE(547)] = 21392,
[SMALL_STATE(548)] = 21408,
[SMALL_STATE(549)] = 21424,
[SMALL_STATE(550)] = 21440,
[SMALL_STATE(551)] = 21456,
[SMALL_STATE(552)] = 21472,
[SMALL_STATE(553)] = 21488,
[SMALL_STATE(554)] = 21504,
[SMALL_STATE(555)] = 21520,
[SMALL_STATE(556)] = 21536,
[SMALL_STATE(557)] = 21552,
[SMALL_STATE(558)] = 21568,
[SMALL_STATE(559)] = 21584,
[SMALL_STATE(560)] = 21600,
[SMALL_STATE(561)] = 21616,
[SMALL_STATE(562)] = 21632,
[SMALL_STATE(563)] = 21647,
[SMALL_STATE(564)] = 21662,
[SMALL_STATE(565)] = 21677,
[SMALL_STATE(566)] = 21692,
[SMALL_STATE(567)] = 21707,
[SMALL_STATE(568)] = 21722,
[SMALL_STATE(569)] = 21737,
[SMALL_STATE(570)] = 21752,
[SMALL_STATE(571)] = 21767,
[SMALL_STATE(572)] = 21786,
[SMALL_STATE(573)] = 21801,
[SMALL_STATE(574)] = 21816,
[SMALL_STATE(575)] = 21831,
[SMALL_STATE(576)] = 21846,
[SMALL_STATE(577)] = 21867,
[SMALL_STATE(578)] = 21882,
[SMALL_STATE(579)] = 21897,
[SMALL_STATE(580)] = 21912,
[SMALL_STATE(581)] = 21927,
[SMALL_STATE(582)] = 21942,
[SMALL_STATE(583)] = 21957,
[SMALL_STATE(584)] = 21976,
[SMALL_STATE(585)] = 21991,
[SMALL_STATE(586)] = 22006,
[SMALL_STATE(587)] = 22021,
[SMALL_STATE(588)] = 22033,
[SMALL_STATE(589)] = 22047,
[SMALL_STATE(590)] = 22061,
[SMALL_STATE(591)] = 22075,
[SMALL_STATE(592)] = 22089,
[SMALL_STATE(593)] = 22103,
[SMALL_STATE(594)] = 22117,
[SMALL_STATE(595)] = 22131,
[SMALL_STATE(596)] = 22143,
[SMALL_STATE(597)] = 22157,
[SMALL_STATE(598)] = 22171,
[SMALL_STATE(599)] = 22185,
[SMALL_STATE(600)] = 22197,
[SMALL_STATE(601)] = 22211,
[SMALL_STATE(602)] = 22225,
[SMALL_STATE(603)] = 22239,
[SMALL_STATE(604)] = 22253,
[SMALL_STATE(605)] = 22267,
[SMALL_STATE(606)] = 22281,
[SMALL_STATE(607)] = 22293,
[SMALL_STATE(608)] = 22307,
[SMALL_STATE(609)] = 22321,
[SMALL_STATE(610)] = 22335,
[SMALL_STATE(611)] = 22347,
[SMALL_STATE(612)] = 22361,
[SMALL_STATE(613)] = 22375,
[SMALL_STATE(614)] = 22385,
[SMALL_STATE(615)] = 22395,
[SMALL_STATE(616)] = 22401,
[SMALL_STATE(617)] = 22411,
[SMALL_STATE(618)] = 22421,
[SMALL_STATE(619)] = 22431,
[SMALL_STATE(620)] = 22437,
[SMALL_STATE(621)] = 22447,
[SMALL_STATE(622)] = 22457,
[SMALL_STATE(623)] = 22467,
[SMALL_STATE(624)] = 22477,
[SMALL_STATE(625)] = 22487,
[SMALL_STATE(626)] = 22497,
[SMALL_STATE(627)] = 22507,
[SMALL_STATE(628)] = 22517,
[SMALL_STATE(629)] = 22527,
[SMALL_STATE(630)] = 22537,
[SMALL_STATE(631)] = 22543,
[SMALL_STATE(632)] = 22553,
[SMALL_STATE(633)] = 22563,
[SMALL_STATE(634)] = 22573,
[SMALL_STATE(635)] = 22583,
[SMALL_STATE(636)] = 22593,
[SMALL_STATE(637)] = 22603,
[SMALL_STATE(638)] = 22613,
[SMALL_STATE(639)] = 22623,
[SMALL_STATE(640)] = 22633,
[SMALL_STATE(641)] = 22643,
[SMALL_STATE(642)] = 22653,
[SMALL_STATE(643)] = 22663,
[SMALL_STATE(644)] = 22673,
[SMALL_STATE(645)] = 22683,
[SMALL_STATE(646)] = 22693,
[SMALL_STATE(647)] = 22703,
[SMALL_STATE(648)] = 22713,
[SMALL_STATE(649)] = 22723,
[SMALL_STATE(650)] = 22733,
[SMALL_STATE(651)] = 22743,
[SMALL_STATE(652)] = 22753,
[SMALL_STATE(653)] = 22763,
[SMALL_STATE(654)] = 22773,
[SMALL_STATE(655)] = 22783,
[SMALL_STATE(656)] = 22793,
[SMALL_STATE(657)] = 22803,
[SMALL_STATE(658)] = 22813,
[SMALL_STATE(659)] = 22823,
[SMALL_STATE(660)] = 22833,
[SMALL_STATE(661)] = 22843,
[SMALL_STATE(662)] = 22853,
[SMALL_STATE(663)] = 22863,
[SMALL_STATE(664)] = 22873,
[SMALL_STATE(665)] = 22883,
[SMALL_STATE(666)] = 22893,
[SMALL_STATE(667)] = 22903,
[SMALL_STATE(668)] = 22913,
[SMALL_STATE(669)] = 22923,
[SMALL_STATE(670)] = 22933,
[SMALL_STATE(671)] = 22943,
[SMALL_STATE(672)] = 22953,
[SMALL_STATE(673)] = 22963,
[SMALL_STATE(674)] = 22973,
[SMALL_STATE(675)] = 22983,
[SMALL_STATE(676)] = 22993,
[SMALL_STATE(677)] = 23003,
[SMALL_STATE(678)] = 23013,
[SMALL_STATE(679)] = 23023,
[SMALL_STATE(680)] = 23033,
[SMALL_STATE(681)] = 23043,
[SMALL_STATE(682)] = 23053,
[SMALL_STATE(683)] = 23063,
[SMALL_STATE(684)] = 23073,
[SMALL_STATE(685)] = 23083,
[SMALL_STATE(686)] = 23093,
[SMALL_STATE(687)] = 23103,
[SMALL_STATE(688)] = 23113,
[SMALL_STATE(689)] = 23123,
[SMALL_STATE(690)] = 23133,
[SMALL_STATE(691)] = 23143,
[SMALL_STATE(692)] = 23153,
[SMALL_STATE(693)] = 23163,
[SMALL_STATE(694)] = 23173,
[SMALL_STATE(695)] = 23183,
[SMALL_STATE(696)] = 23193,
[SMALL_STATE(697)] = 23203,
[SMALL_STATE(698)] = 23213,
[SMALL_STATE(699)] = 23223,
[SMALL_STATE(700)] = 23233,
[SMALL_STATE(701)] = 23243,
[SMALL_STATE(702)] = 23253,
[SMALL_STATE(703)] = 23263,
[SMALL_STATE(704)] = 23273,
[SMALL_STATE(705)] = 23283,
[SMALL_STATE(706)] = 23293,
[SMALL_STATE(707)] = 23303,
[SMALL_STATE(708)] = 23313,
[SMALL_STATE(709)] = 23323,
[SMALL_STATE(710)] = 23333,
[SMALL_STATE(711)] = 23343,
[SMALL_STATE(712)] = 23353,
[SMALL_STATE(713)] = 23363,
[SMALL_STATE(714)] = 23373,
[SMALL_STATE(715)] = 23383,
[SMALL_STATE(716)] = 23393,
[SMALL_STATE(717)] = 23403,
[SMALL_STATE(718)] = 23413,
[SMALL_STATE(719)] = 23423,
[SMALL_STATE(720)] = 23433,
[SMALL_STATE(721)] = 23443,
[SMALL_STATE(722)] = 23453,
[SMALL_STATE(723)] = 23463,
[SMALL_STATE(724)] = 23473,
[SMALL_STATE(725)] = 23483,
[SMALL_STATE(726)] = 23493,
[SMALL_STATE(727)] = 23503,
[SMALL_STATE(728)] = 23513,
[SMALL_STATE(729)] = 23523,
[SMALL_STATE(730)] = 23533,
[SMALL_STATE(731)] = 23543,
[SMALL_STATE(732)] = 23553,
[SMALL_STATE(733)] = 23563,
[SMALL_STATE(734)] = 23570,
[SMALL_STATE(735)] = 23577,
[SMALL_STATE(736)] = 23584,
[SMALL_STATE(737)] = 23591,
[SMALL_STATE(738)] = 23598,
[SMALL_STATE(739)] = 23605,
[SMALL_STATE(740)] = 23612,
[SMALL_STATE(741)] = 23619,
[SMALL_STATE(742)] = 23626,
[SMALL_STATE(743)] = 23633,
[SMALL_STATE(744)] = 23640,
[SMALL_STATE(745)] = 23647,
[SMALL_STATE(746)] = 23654,
[SMALL_STATE(747)] = 23661,
[SMALL_STATE(748)] = 23668,
[SMALL_STATE(749)] = 23675,
[SMALL_STATE(750)] = 23682,
[SMALL_STATE(751)] = 23689,
[SMALL_STATE(752)] = 23696,
[SMALL_STATE(753)] = 23703,
[SMALL_STATE(754)] = 23710,
[SMALL_STATE(755)] = 23717,
[SMALL_STATE(756)] = 23724,
[SMALL_STATE(757)] = 23731,
[SMALL_STATE(758)] = 23738,
[SMALL_STATE(759)] = 23745,
[SMALL_STATE(760)] = 23752,
[SMALL_STATE(761)] = 23759,
[SMALL_STATE(762)] = 23766,
[SMALL_STATE(763)] = 23773,
[SMALL_STATE(764)] = 23780,
[SMALL_STATE(765)] = 23787,
[SMALL_STATE(766)] = 23794,
[SMALL_STATE(767)] = 23801,
[SMALL_STATE(768)] = 23808,
[SMALL_STATE(769)] = 23815,
[SMALL_STATE(770)] = 23822,
[SMALL_STATE(771)] = 23829,
[SMALL_STATE(772)] = 23836,
[SMALL_STATE(773)] = 23843,
[SMALL_STATE(774)] = 23850,
[SMALL_STATE(775)] = 23857,
[SMALL_STATE(776)] = 23864,
[SMALL_STATE(777)] = 23871,
[SMALL_STATE(778)] = 23878,
[SMALL_STATE(779)] = 23885,
[SMALL_STATE(780)] = 23892,
[SMALL_STATE(781)] = 23899,
[SMALL_STATE(782)] = 23906,
[SMALL_STATE(783)] = 23910,
[SMALL_STATE(784)] = 23914,
[SMALL_STATE(785)] = 23918,
[SMALL_STATE(786)] = 23922,
[SMALL_STATE(787)] = 23926,
[SMALL_STATE(788)] = 23930,
[SMALL_STATE(789)] = 23934,
[SMALL_STATE(790)] = 23938,
[SMALL_STATE(791)] = 23942,
[SMALL_STATE(792)] = 23946,
[SMALL_STATE(793)] = 23950,
[SMALL_STATE(794)] = 23954,
[SMALL_STATE(795)] = 23958,
[SMALL_STATE(796)] = 23962,
[SMALL_STATE(797)] = 23966,
[SMALL_STATE(798)] = 23970,
[SMALL_STATE(799)] = 23974,
[SMALL_STATE(800)] = 23978,
[SMALL_STATE(801)] = 23982,
[SMALL_STATE(802)] = 23986,
[SMALL_STATE(803)] = 23990,
[SMALL_STATE(804)] = 23994,
[SMALL_STATE(805)] = 23998,
[SMALL_STATE(806)] = 24002,
[SMALL_STATE(807)] = 24006,
[SMALL_STATE(808)] = 24010,
[SMALL_STATE(809)] = 24014,
[SMALL_STATE(810)] = 24018,
[SMALL_STATE(811)] = 24022,
[SMALL_STATE(812)] = 24026,
[SMALL_STATE(813)] = 24030,
[SMALL_STATE(814)] = 24034,
[SMALL_STATE(815)] = 24038,
[SMALL_STATE(816)] = 24042,
[SMALL_STATE(817)] = 24046,
[SMALL_STATE(818)] = 24050,
[SMALL_STATE(819)] = 24054,
[SMALL_STATE(820)] = 24058,
[SMALL_STATE(821)] = 24062,
[SMALL_STATE(822)] = 24066,
[SMALL_STATE(823)] = 24070,
[SMALL_STATE(824)] = 24074,
[SMALL_STATE(825)] = 24078,
[SMALL_STATE(826)] = 24082,
[SMALL_STATE(827)] = 24086,
[SMALL_STATE(828)] = 24090,
[SMALL_STATE(829)] = 24094,
[SMALL_STATE(830)] = 24098,
[SMALL_STATE(831)] = 24102,
[SMALL_STATE(832)] = 24106,
[SMALL_STATE(833)] = 24110,
[SMALL_STATE(834)] = 24114,
[SMALL_STATE(835)] = 24118,
[SMALL_STATE(836)] = 24122,
[SMALL_STATE(837)] = 24126,
[SMALL_STATE(838)] = 24130,
[SMALL_STATE(839)] = 24134,
[SMALL_STATE(840)] = 24138,
[SMALL_STATE(841)] = 24142,
[SMALL_STATE(842)] = 24146,
[SMALL_STATE(843)] = 24150,
[SMALL_STATE(844)] = 24154,
[SMALL_STATE(845)] = 24158,
[SMALL_STATE(846)] = 24162,
[SMALL_STATE(847)] = 24166,
[SMALL_STATE(848)] = 24170,
[SMALL_STATE(849)] = 24174,
[SMALL_STATE(850)] = 24178,
[SMALL_STATE(851)] = 24182,
[SMALL_STATE(852)] = 24186,
[SMALL_STATE(853)] = 24190,
[SMALL_STATE(854)] = 24194,
[SMALL_STATE(855)] = 24198,
[SMALL_STATE(856)] = 24202,
[SMALL_STATE(857)] = 24206,
[SMALL_STATE(858)] = 24210,
[SMALL_STATE(859)] = 24214,
[SMALL_STATE(860)] = 24218,
[SMALL_STATE(861)] = 24222,
[SMALL_STATE(862)] = 24226,
[SMALL_STATE(863)] = 24230,
[SMALL_STATE(864)] = 24234,
[SMALL_STATE(865)] = 24238,
[SMALL_STATE(866)] = 24242,
[SMALL_STATE(867)] = 24246,
[SMALL_STATE(868)] = 24250,
[SMALL_STATE(869)] = 24254,
[SMALL_STATE(870)] = 24258,
[SMALL_STATE(871)] = 24262,
[SMALL_STATE(872)] = 24266,
[SMALL_STATE(873)] = 24270,
};
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}}, REDUCE(sym_source_file, 0),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644),
[43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(193),
[46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(704),
[49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(637),
[52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(646),
[55] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2),
[57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(616),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(617),
[63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(620),
[66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(621),
[69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(622),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(706),
[75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245),
[89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
[91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574),
[95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
[103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563),
[113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
[119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
[127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
[129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
[153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
[159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534),
[195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530),
[199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
[203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528),
[211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562),
[213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523),
[219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585),
[221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521),
[227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520),
[235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516),
[241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517),
[243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513),
[251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512),
[263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506),
[267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500),
[271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
[273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495),
[275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483),
[279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471),
[287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
[289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
[291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467),
[307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468),
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470),
[315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(330),
[318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(294),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(101),
[324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(47),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2),
[329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(287),
[332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(245),
[335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(327),
[338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
[342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503),
[346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472),
[348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504),
[350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569),
[352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519),
[356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586),
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
[368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
[372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
[386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
[392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458),
[394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457),
[396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
[424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526),
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499),
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
[478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480),
[480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511),
[496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
[502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
[506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
[548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(192),
[551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704),
[554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2),
[556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(616),
[559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617),
[562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(620),
[565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621),
[568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(622),
[571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680),
[586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648),
[598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(203),
[601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(680),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(210),
[611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(662),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(218),
[619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648),
[622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(221),
[625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(730),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
[632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(223),
[635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(623),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(229),
[647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 1),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
[674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(330),
[677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(294),
[680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(243),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598),
[687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1),
[689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573),
[693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 2),
[695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(380),
[698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(319),
[701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2),
[703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(282),
[706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(280),
[709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(377),
[712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601),
[714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596),
[718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591),
[720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
[722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515),
[724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
[726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
[728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
[730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551),
[732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451),
[734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
[736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491),
[738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525),
[740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
[744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
[746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412),
[748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533),
[750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609),
[754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784),
[762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1),
[764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
[766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(380),
[769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(319),
[772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2),
[774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(281),
[777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612),
[779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
[783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293),
[785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615),
[789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(564),
[792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(332),
[795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(285),
[798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785),
[800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(612),
[805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(372),
[808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2),
[810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(288),
[813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(591),
[816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(365),
[819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(289),
[822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
[824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(609),
[827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(334),
[830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(291),
[833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291),
[835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1),
[837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288),
[839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 1),
[841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828),
[845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844),
[847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 1),
[851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610),
[853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695),
[857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(610),
[860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(297),
[863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(695),
[866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2),
[868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1),
[872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2),
[874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(318),
[877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(318),
[880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870),
[884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871),
[886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1),
[890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1),
[892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 5),
[894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 5),
[896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2),
[898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2),
[900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 3),
[902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 3),
[904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 3),
[906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 3),
[908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3),
[910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3),
[912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 2),
[914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 2),
[916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1),
[918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1),
[920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 5),
[922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 5),
[924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 4),
[926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 4),
[928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1),
[930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1),
[932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 4),
[934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 4),
[936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858),
[940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859),
[942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5),
[946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5),
[948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866),
[952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867),
[954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3),
[958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3),
[960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3),
[962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3),
[964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3),
[966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3),
[968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3),
[970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3),
[972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3),
[974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3),
[976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5),
[978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5),
[980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4),
[982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4),
[984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3),
[986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3),
[988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5),
[990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5),
[992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4),
[994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4),
[996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3),
[998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3),
[1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3),
[1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3),
[1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3),
[1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3),
[1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3),
[1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3),
[1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 3),
[1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 3),
[1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 5),
[1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 5),
[1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4),
[1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4),
[1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4),
[1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4),
[1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4),
[1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4),
[1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4),
[1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4),
[1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 4),
[1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 4),
[1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 5),
[1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 5),
[1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5),
[1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5),
[1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5),
[1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5),
[1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2),
[1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2),
[1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(360),
[1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2),
[1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(360),
[1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_def, 3),
[1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_def, 3),
[1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 5),
[1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 5),
[1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6),
[1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6),
[1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7),
[1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7),
[1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
[1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862),
[1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863),
[1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4),
[1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4),
[1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4),
[1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4),
[1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5),
[1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5),
[1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3),
[1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3),
[1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3),
[1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3),
[1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4),
[1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4),
[1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 1),
[1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850),
[1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851),
[1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 1),
[1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3),
[1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3),
[1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3),
[1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3),
[1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1),
[1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389),
[1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1),
[1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2),
[1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(469),
[1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(469),
[1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4),
[1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4),
[1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3),
[1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3),
[1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 5),
[1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 5),
[1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5),
[1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5),
[1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3),
[1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3),
[1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5),
[1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5),
[1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3),
[1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3),
[1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(571),
[1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(571),
[1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5),
[1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5),
[1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4),
[1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4),
[1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(576),
[1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(576),
[1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3),
[1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3),
[1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 3),
[1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 3),
[1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 4),
[1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 4),
[1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4),
[1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4),
[1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2),
[1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(583),
[1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(583),
[1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4),
[1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4),
[1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5),
[1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5),
[1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661),
[1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
[1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625),
[1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626),
[1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627),
[1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628),
[1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629),
[1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631),
[1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763),
[1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676),
[1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632),
[1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633),
[1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634),
[1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772),
[1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635),
[1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636),
[1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643),
[1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677),
[1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678),
[1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645),
[1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758),
[1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649),
[1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650),
[1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651),
[1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751),
[1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652),
[1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
[1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2),
[1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(661),
[1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660),
[1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747),
[1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663),
[1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664),
[1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665),
[1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
[1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666),
[1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667),
[1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673),
[1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707),
[1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675),
[1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754),
[1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702),
[1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760),
[1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682),
[1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683),
[1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684),
[1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780),
[1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685),
[1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686),
[1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 1),
[1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693),
[1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854),
[1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855),
[1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618),
[1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697),
[1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696),
[1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777),
[1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698),
[1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624),
[1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712),
[1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764),
[1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714),
[1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721),
[1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774),
[1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722),
[1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723),
[1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724),
[1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725),
[1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705),
[1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775),
[1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708),
[1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709),
[1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745),
[1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710),
[1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711),
[1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732),
[1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613),
[1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689),
[1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670),
[1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669),
[1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728),
[1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727),
[1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668),
[1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
[1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657),
[1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726),
[1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720),
[1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656),
[1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655),
[1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524),
[1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
[1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
[1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
[1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272),
[1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715),
[1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671),
[1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672),
[1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413),
[1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
[1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716),
[1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679),
[1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
[1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268),
[1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681),
[1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699),
[1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700),
[1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
[1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266),
[1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701),
[1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425),
[1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267),
[1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549),
[1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275),
[1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717),
[1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
[1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270),
[1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514),
[1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
[1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718),
[1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719),
[1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688),
[1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638),
[1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639),
[1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640),
[1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641),
[1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
[1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269),
[1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642),
[1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273),
[1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
[1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687),
[1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518),
[1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277),
[1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729),
[1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691),
[1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
[1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271),
[1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690),
[1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426),
[1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593),
[1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595),
[1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599),
[1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501),
[1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494),
[1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834),
[1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835),
[1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493),
[1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600),
[1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
[1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430),
[1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379),
[1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
[1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589),
[1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856),
[1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853),
[1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630),
[1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602),
[1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588),
[1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 2),
[1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605),
[1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375),
[1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
[1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572),
[1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486),
[1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597),
[1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
[1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797),
[1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796),
[1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604),
[1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792),
[1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838),
[1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584),
[1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473),
[1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789),
[1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505),
[1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507),
[1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460),
[1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
[1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857),
[1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461),
[1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
[1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587),
[1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805),
[1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872),
[1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837),
[1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841),
[1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873),
[1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
[1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
[1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
[1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590),
[1849] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594),
[1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
[1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611),
[1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603),
[1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
};
#ifdef __cplusplus
extern "C" {
#endif
void *tree_sitter_cmake_external_scanner_create(void);
void tree_sitter_cmake_external_scanner_destroy(void *);
bool tree_sitter_cmake_external_scanner_scan(void *, TSLexer *, const bool *);
unsigned tree_sitter_cmake_external_scanner_serialize(void *, char *);
void tree_sitter_cmake_external_scanner_deserialize(void *, const char *, unsigned);
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_cmake(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,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.external_scanner = {
&ts_external_scanner_states[0][0],
ts_external_scanner_symbol_map,
tree_sitter_cmake_external_scanner_create,
tree_sitter_cmake_external_scanner_destroy,
tree_sitter_cmake_external_scanner_scan,
tree_sitter_cmake_external_scanner_serialize,
tree_sitter_cmake_external_scanner_deserialize,
},
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif