diff --git a/grammar.js b/grammar.js index 8dde464..1a674be 100644 --- a/grammar.js +++ b/grammar.js @@ -28,10 +28,40 @@ module.exports = grammar({ $.organization_block, $.function_block, $.function, + $.type_definition, + $.data_block, $.statement ) ), + type_definition: $ => seq( + alias('TYPE', $.keyword), + field('name', choice($.string, $.identifier)), + optional(seq(alias('TITLE', $.keyword), '=', choice($.string, $.identifier))), + optional($.attribute_list), + optional(seq(alias('VERSION', $.keyword), ':', $.number)), + alias('STRUCT', $.keyword), + repeat(choice($.var_item, $.block_comment)), + alias('END_STRUCT', $.keyword), + alias('END_TYPE', $.keyword) + ), + + data_block: $ => seq( + alias('DATA_BLOCK', $.keyword), + field('name', choice($.string, $.identifier)), + optional(seq(alias('TITLE', $.keyword), '=', choice($.string, $.identifier))), + optional($.attribute_list), + optional(seq(alias('VERSION', $.keyword), ':', $.number)), + optional(choice( + alias('NON_RETAIN', $.keyword), + alias('RETAIN', $.keyword) + )), + optional($.var_declaration), + alias('BEGIN', $.keyword), + repeat($.statement), + alias('END_DATA_BLOCK', $.keyword) + ), + organization_block: $ => seq( alias('ORGANIZATION_BLOCK', $.keyword), field('name', $.string), diff --git a/src/grammar.json b/src/grammar.json index 64eac29..9e15b7e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -19,6 +19,14 @@ "type": "SYMBOL", "name": "function" }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "data_block" + }, { "type": "SYMBOL", "name": "statement" @@ -26,6 +34,341 @@ ] } }, + "type_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "TYPE" + }, + "named": true, + "value": "keyword" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "TITLE" + }, + "named": true, + "value": "keyword" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "VERSION" + }, + "named": true, + "value": "keyword" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "number" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "STRUCT" + }, + "named": true, + "value": "keyword" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "var_item" + }, + { + "type": "SYMBOL", + "name": "block_comment" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "END_STRUCT" + }, + "named": true, + "value": "keyword" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "END_TYPE" + }, + "named": true, + "value": "keyword" + } + ] + }, + "data_block": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "DATA_BLOCK" + }, + "named": true, + "value": "keyword" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "TITLE" + }, + "named": true, + "value": "keyword" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "VERSION" + }, + "named": true, + "value": "keyword" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "number" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "NON_RETAIN" + }, + "named": true, + "value": "keyword" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "RETAIN" + }, + "named": true, + "value": "keyword" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "var_declaration" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "BEGIN" + }, + "named": true, + "value": "keyword" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "END_DATA_BLOCK" + }, + "named": true, + "value": "keyword" + } + ] + }, "organization_block": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 7f9354b..d1b7d4b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -193,6 +193,60 @@ ] } }, + { + "type": "data_block", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_list", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "keyword", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "var_declaration", + "named": true + } + ] + } + }, { "type": "else_clause", "named": true, @@ -851,6 +905,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "data_block", + "named": true + }, { "type": "function", "named": true @@ -866,6 +924,10 @@ { "type": "statement", "named": true + }, + { + "type": "type_definition", + "named": true } ] } @@ -989,6 +1051,60 @@ ] } }, + { + "type": "type_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_list", + "named": true + }, + { + "type": "block_comment", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "keyword", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "var_item", + "named": true + } + ] + } + }, { "type": "unary_expression", "named": true, diff --git a/src/parser.c b/src/parser.c index 6113ae6..284bbf3 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,11 +15,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1881 +#define STATE_COUNT 2135 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 200 +#define SYMBOL_COUNT 208 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 142 +#define TOKEN_COUNT 148 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 5 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -28,215 +28,231 @@ #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { - anon_sym_ORGANIZATION_BLOCK = 1, + anon_sym_TYPE = 1, anon_sym_TITLE = 2, anon_sym_EQ = 3, anon_sym_VERSION = 4, anon_sym_COLON = 5, - anon_sym_BEGIN = 6, - anon_sym_END_ORGANIZATION_BLOCK = 7, - anon_sym_FUNCTION_BLOCK = 8, - anon_sym_END_FUNCTION_BLOCK = 9, - anon_sym_FUNCTION = 10, - anon_sym_END_FUNCTION = 11, - anon_sym_LBRACE = 12, - anon_sym_COMMA = 13, - anon_sym_SEMI = 14, - anon_sym_RBRACE = 15, - anon_sym_COLON_EQ = 16, - anon_sym_TRUE = 17, - anon_sym_FALSE = 18, - anon_sym_VAR_INPUT = 19, - anon_sym_VAR_OUTPUT = 20, - anon_sym_VAR_IN_OUT = 21, - anon_sym_VAR = 22, - anon_sym_VAR_TEMP = 23, - anon_sym_CONSTANT = 24, - anon_sym_RETAIN = 25, - anon_sym_NON_RETAIN = 26, - anon_sym_VAR_CONSTANT = 27, - anon_sym_VAR_RETAIN = 28, - anon_sym_VAR_NON_RETAIN = 29, - anon_sym_END_VAR = 30, - anon_sym_BOOL = 31, - anon_sym_Bool = 32, - anon_sym_INT = 33, - anon_sym_Int = 34, - anon_sym_int = 35, - anon_sym_DINT = 36, - anon_sym_DInt = 37, - anon_sym_dint = 38, - anon_sym_SINT = 39, - anon_sym_SInt = 40, - anon_sym_sint = 41, - anon_sym_USINT = 42, - anon_sym_USInt = 43, - anon_sym_usint = 44, - anon_sym_UINT = 45, - anon_sym_UInt = 46, - anon_sym_uint = 47, - anon_sym_WORD = 48, - anon_sym_Word = 49, - anon_sym_word = 50, - anon_sym_DWORD = 51, - anon_sym_DWord = 52, - anon_sym_dword = 53, - anon_sym_BYTE = 54, - anon_sym_Byte = 55, - anon_sym_byte = 56, - anon_sym_REAL = 57, - anon_sym_Real = 58, - anon_sym_real = 59, - anon_sym_LREAL = 60, - anon_sym_LReal = 61, - anon_sym_lreal = 62, - anon_sym_TIME = 63, - anon_sym_Time = 64, - anon_sym_time = 65, - anon_sym_TOD = 66, - anon_sym_Tod = 67, - anon_sym_tod = 68, - anon_sym_DT = 69, - anon_sym_Dt = 70, - anon_sym_dt = 71, - anon_sym_String = 72, - anon_sym_STRING = 73, - anon_sym_string = 74, - anon_sym_LBRACK = 75, - anon_sym_RBRACK = 76, - anon_sym_WString = 77, - anon_sym_WSTRING = 78, - anon_sym_wstring = 79, - anon_sym_Char = 80, - anon_sym_CHAR = 81, - anon_sym_char = 82, - anon_sym_WChar = 83, - anon_sym_WCHAR = 84, - anon_sym_wchar = 85, - anon_sym_ARRAY = 86, - anon_sym_DOT_DOT = 87, - anon_sym_OF = 88, - anon_sym_LPAREN = 89, - anon_sym_RPAREN = 90, - anon_sym_EQ_GT = 91, - anon_sym_POUND = 92, - anon_sym_DOT = 93, - anon_sym_IF = 94, - anon_sym_THEN = 95, - anon_sym_END_IF = 96, - anon_sym_ELSIF = 97, - anon_sym_ELSE = 98, - anon_sym_CASE = 99, - anon_sym_END_CASE = 100, - anon_sym_FOR = 101, - anon_sym_TO = 102, - anon_sym_BY = 103, - anon_sym_DO = 104, - anon_sym_END_FOR = 105, - anon_sym_WHILE = 106, - anon_sym_END_WHILE = 107, - anon_sym_REPEAT = 108, - anon_sym_UNTIL = 109, - anon_sym_END_REPEAT = 110, - anon_sym_REGION = 111, - anon_sym_END_REGION = 112, - anon_sym_SLASH = 113, - anon_sym_DASH = 114, - anon_sym_NOT = 115, - anon_sym_PLUS = 116, - anon_sym_OR = 117, - anon_sym_XOR = 118, - anon_sym_AND = 119, - anon_sym_LT_GT = 120, - anon_sym_LT = 121, - anon_sym_GT = 122, - anon_sym_LT_EQ = 123, - anon_sym_GT_EQ = 124, - anon_sym_STAR = 125, - anon_sym_MOD = 126, - sym_number = 127, - sym_hex_number = 128, - sym_time_value = 129, - anon_sym_SQUOTE = 130, - aux_sym_string_token1 = 131, - anon_sym_SQUOTE_SQUOTE = 132, - anon_sym_DQUOTE = 133, - aux_sym_string_token2 = 134, - anon_sym_DQUOTE_DQUOTE = 135, - sym_identifier = 136, - sym_line_comment = 137, - sym_block_comment = 138, - sym_c_style_comment = 139, - anon_sym_EXIT = 140, - anon_sym_CONTINUE = 141, - sym_source_file = 142, - sym_organization_block = 143, - sym_function_block = 144, - sym_function = 145, - sym_attribute_list = 146, - sym_attribute = 147, - sym_attribute_value = 148, - sym_var_declaration = 149, - sym_var_temp_declaration = 150, - sym_var_constant_declaration = 151, - sym_var_retain_declaration = 152, - sym_var_non_retain_declaration = 153, - sym_var_item = 154, - sym_type = 155, - sym_statement = 156, - sym_empty_statement = 157, - sym_fb_call = 158, - sym_fb_parameter_list = 159, - sym_fb_parameter = 160, - sym_assignment = 161, - sym_lvalue = 162, - sym_function_name = 163, - sym_prefixed_identifier = 164, - sym_field_access = 165, - sym_array_access = 166, - sym_if_statement = 167, - sym_elsif_clause = 168, - sym_else_clause = 169, - sym_case_statement = 170, - sym_case_item = 171, - sym_range = 172, - sym_for_statement = 173, - sym_while_statement = 174, - sym_repeat_statement = 175, - sym_region_statement = 176, - sym_region_name = 177, - sym_function_call = 178, - sym_parameter_list = 179, - sym_parameter = 180, - sym_expression = 181, - sym_unary_expression = 182, - sym_binary_expression = 183, - sym_string = 184, - sym_exit_statement = 185, - sym_continue_statement = 186, - aux_sym_source_file_repeat1 = 187, - aux_sym_organization_block_repeat1 = 188, - aux_sym_organization_block_repeat2 = 189, - aux_sym_function_repeat1 = 190, - aux_sym_attribute_list_repeat1 = 191, - aux_sym_var_declaration_repeat1 = 192, - aux_sym_fb_parameter_list_repeat1 = 193, - aux_sym_if_statement_repeat1 = 194, - aux_sym_case_statement_repeat1 = 195, - aux_sym_region_name_repeat1 = 196, - aux_sym_parameter_list_repeat1 = 197, - aux_sym_string_repeat1 = 198, - aux_sym_string_repeat2 = 199, + anon_sym_STRUCT = 6, + anon_sym_END_STRUCT = 7, + anon_sym_END_TYPE = 8, + anon_sym_DATA_BLOCK = 9, + anon_sym_NON_RETAIN = 10, + anon_sym_RETAIN = 11, + anon_sym_BEGIN = 12, + anon_sym_END_DATA_BLOCK = 13, + anon_sym_ORGANIZATION_BLOCK = 14, + anon_sym_END_ORGANIZATION_BLOCK = 15, + anon_sym_FUNCTION_BLOCK = 16, + anon_sym_END_FUNCTION_BLOCK = 17, + anon_sym_FUNCTION = 18, + anon_sym_END_FUNCTION = 19, + anon_sym_LBRACE = 20, + anon_sym_COMMA = 21, + anon_sym_SEMI = 22, + anon_sym_RBRACE = 23, + anon_sym_COLON_EQ = 24, + anon_sym_TRUE = 25, + anon_sym_FALSE = 26, + anon_sym_VAR_INPUT = 27, + anon_sym_VAR_OUTPUT = 28, + anon_sym_VAR_IN_OUT = 29, + anon_sym_VAR = 30, + anon_sym_VAR_TEMP = 31, + anon_sym_CONSTANT = 32, + anon_sym_VAR_CONSTANT = 33, + anon_sym_VAR_RETAIN = 34, + anon_sym_VAR_NON_RETAIN = 35, + anon_sym_END_VAR = 36, + anon_sym_BOOL = 37, + anon_sym_Bool = 38, + anon_sym_INT = 39, + anon_sym_Int = 40, + anon_sym_int = 41, + anon_sym_DINT = 42, + anon_sym_DInt = 43, + anon_sym_dint = 44, + anon_sym_SINT = 45, + anon_sym_SInt = 46, + anon_sym_sint = 47, + anon_sym_USINT = 48, + anon_sym_USInt = 49, + anon_sym_usint = 50, + anon_sym_UINT = 51, + anon_sym_UInt = 52, + anon_sym_uint = 53, + anon_sym_WORD = 54, + anon_sym_Word = 55, + anon_sym_word = 56, + anon_sym_DWORD = 57, + anon_sym_DWord = 58, + anon_sym_dword = 59, + anon_sym_BYTE = 60, + anon_sym_Byte = 61, + anon_sym_byte = 62, + anon_sym_REAL = 63, + anon_sym_Real = 64, + anon_sym_real = 65, + anon_sym_LREAL = 66, + anon_sym_LReal = 67, + anon_sym_lreal = 68, + anon_sym_TIME = 69, + anon_sym_Time = 70, + anon_sym_time = 71, + anon_sym_TOD = 72, + anon_sym_Tod = 73, + anon_sym_tod = 74, + anon_sym_DT = 75, + anon_sym_Dt = 76, + anon_sym_dt = 77, + anon_sym_String = 78, + anon_sym_STRING = 79, + anon_sym_string = 80, + anon_sym_LBRACK = 81, + anon_sym_RBRACK = 82, + anon_sym_WString = 83, + anon_sym_WSTRING = 84, + anon_sym_wstring = 85, + anon_sym_Char = 86, + anon_sym_CHAR = 87, + anon_sym_char = 88, + anon_sym_WChar = 89, + anon_sym_WCHAR = 90, + anon_sym_wchar = 91, + anon_sym_ARRAY = 92, + anon_sym_DOT_DOT = 93, + anon_sym_OF = 94, + anon_sym_LPAREN = 95, + anon_sym_RPAREN = 96, + anon_sym_EQ_GT = 97, + anon_sym_POUND = 98, + anon_sym_DOT = 99, + anon_sym_IF = 100, + anon_sym_THEN = 101, + anon_sym_END_IF = 102, + anon_sym_ELSIF = 103, + anon_sym_ELSE = 104, + anon_sym_CASE = 105, + anon_sym_END_CASE = 106, + anon_sym_FOR = 107, + anon_sym_TO = 108, + anon_sym_BY = 109, + anon_sym_DO = 110, + anon_sym_END_FOR = 111, + anon_sym_WHILE = 112, + anon_sym_END_WHILE = 113, + anon_sym_REPEAT = 114, + anon_sym_UNTIL = 115, + anon_sym_END_REPEAT = 116, + anon_sym_REGION = 117, + anon_sym_END_REGION = 118, + anon_sym_SLASH = 119, + anon_sym_DASH = 120, + anon_sym_NOT = 121, + anon_sym_PLUS = 122, + anon_sym_OR = 123, + anon_sym_XOR = 124, + anon_sym_AND = 125, + anon_sym_LT_GT = 126, + anon_sym_LT = 127, + anon_sym_GT = 128, + anon_sym_LT_EQ = 129, + anon_sym_GT_EQ = 130, + anon_sym_STAR = 131, + anon_sym_MOD = 132, + sym_number = 133, + sym_hex_number = 134, + sym_time_value = 135, + anon_sym_SQUOTE = 136, + aux_sym_string_token1 = 137, + anon_sym_SQUOTE_SQUOTE = 138, + anon_sym_DQUOTE = 139, + aux_sym_string_token2 = 140, + anon_sym_DQUOTE_DQUOTE = 141, + sym_identifier = 142, + sym_line_comment = 143, + sym_block_comment = 144, + sym_c_style_comment = 145, + anon_sym_EXIT = 146, + anon_sym_CONTINUE = 147, + sym_source_file = 148, + sym_type_definition = 149, + sym_data_block = 150, + sym_organization_block = 151, + sym_function_block = 152, + sym_function = 153, + sym_attribute_list = 154, + sym_attribute = 155, + sym_attribute_value = 156, + sym_var_declaration = 157, + sym_var_temp_declaration = 158, + sym_var_constant_declaration = 159, + sym_var_retain_declaration = 160, + sym_var_non_retain_declaration = 161, + sym_var_item = 162, + sym_type = 163, + sym_statement = 164, + sym_empty_statement = 165, + sym_fb_call = 166, + sym_fb_parameter_list = 167, + sym_fb_parameter = 168, + sym_assignment = 169, + sym_lvalue = 170, + sym_function_name = 171, + sym_prefixed_identifier = 172, + sym_field_access = 173, + sym_array_access = 174, + sym_if_statement = 175, + sym_elsif_clause = 176, + sym_else_clause = 177, + sym_case_statement = 178, + sym_case_item = 179, + sym_range = 180, + sym_for_statement = 181, + sym_while_statement = 182, + sym_repeat_statement = 183, + sym_region_statement = 184, + sym_region_name = 185, + sym_function_call = 186, + sym_parameter_list = 187, + sym_parameter = 188, + sym_expression = 189, + sym_unary_expression = 190, + sym_binary_expression = 191, + sym_string = 192, + sym_exit_statement = 193, + sym_continue_statement = 194, + aux_sym_source_file_repeat1 = 195, + aux_sym_type_definition_repeat1 = 196, + aux_sym_data_block_repeat1 = 197, + aux_sym_organization_block_repeat1 = 198, + aux_sym_function_repeat1 = 199, + aux_sym_attribute_list_repeat1 = 200, + aux_sym_fb_parameter_list_repeat1 = 201, + aux_sym_if_statement_repeat1 = 202, + aux_sym_case_statement_repeat1 = 203, + aux_sym_region_name_repeat1 = 204, + aux_sym_parameter_list_repeat1 = 205, + aux_sym_string_repeat1 = 206, + aux_sym_string_repeat2 = 207, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_ORGANIZATION_BLOCK] = "keyword", + [anon_sym_TYPE] = "keyword", [anon_sym_TITLE] = "keyword", [anon_sym_EQ] = "=", [anon_sym_VERSION] = "keyword", [anon_sym_COLON] = ":", + [anon_sym_STRUCT] = "keyword", + [anon_sym_END_STRUCT] = "keyword", + [anon_sym_END_TYPE] = "keyword", + [anon_sym_DATA_BLOCK] = "keyword", + [anon_sym_NON_RETAIN] = "keyword", + [anon_sym_RETAIN] = "keyword", [anon_sym_BEGIN] = "keyword", + [anon_sym_END_DATA_BLOCK] = "keyword", + [anon_sym_ORGANIZATION_BLOCK] = "keyword", [anon_sym_END_ORGANIZATION_BLOCK] = "keyword", [anon_sym_FUNCTION_BLOCK] = "keyword", [anon_sym_END_FUNCTION_BLOCK] = "keyword", @@ -255,8 +271,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_VAR] = "keyword", [anon_sym_VAR_TEMP] = "keyword", [anon_sym_CONSTANT] = "keyword", - [anon_sym_RETAIN] = "keyword", - [anon_sym_NON_RETAIN] = "keyword", [anon_sym_VAR_CONSTANT] = "keyword", [anon_sym_VAR_RETAIN] = "keyword", [anon_sym_VAR_NON_RETAIN] = "keyword", @@ -373,6 +387,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_EXIT] = "keyword", [anon_sym_CONTINUE] = "keyword", [sym_source_file] = "source_file", + [sym_type_definition] = "type_definition", + [sym_data_block] = "data_block", [sym_organization_block] = "organization_block", [sym_function_block] = "function_block", [sym_function] = "function", @@ -418,11 +434,11 @@ static const char * const ts_symbol_names[] = { [sym_exit_statement] = "exit_statement", [sym_continue_statement] = "continue_statement", [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_type_definition_repeat1] = "type_definition_repeat1", + [aux_sym_data_block_repeat1] = "data_block_repeat1", [aux_sym_organization_block_repeat1] = "organization_block_repeat1", - [aux_sym_organization_block_repeat2] = "organization_block_repeat2", [aux_sym_function_repeat1] = "function_repeat1", [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", - [aux_sym_var_declaration_repeat1] = "var_declaration_repeat1", [aux_sym_fb_parameter_list_repeat1] = "fb_parameter_list_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", @@ -434,17 +450,25 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_ORGANIZATION_BLOCK] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_TITLE] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_TYPE] = anon_sym_TYPE, + [anon_sym_TITLE] = anon_sym_TYPE, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_VERSION] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_VERSION] = anon_sym_TYPE, [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_BEGIN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_ORGANIZATION_BLOCK] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_FUNCTION_BLOCK] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_FUNCTION_BLOCK] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_FUNCTION] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_FUNCTION] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_STRUCT] = anon_sym_TYPE, + [anon_sym_END_STRUCT] = anon_sym_TYPE, + [anon_sym_END_TYPE] = anon_sym_TYPE, + [anon_sym_DATA_BLOCK] = anon_sym_TYPE, + [anon_sym_NON_RETAIN] = anon_sym_TYPE, + [anon_sym_RETAIN] = anon_sym_TYPE, + [anon_sym_BEGIN] = anon_sym_TYPE, + [anon_sym_END_DATA_BLOCK] = anon_sym_TYPE, + [anon_sym_ORGANIZATION_BLOCK] = anon_sym_TYPE, + [anon_sym_END_ORGANIZATION_BLOCK] = anon_sym_TYPE, + [anon_sym_FUNCTION_BLOCK] = anon_sym_TYPE, + [anon_sym_END_FUNCTION_BLOCK] = anon_sym_TYPE, + [anon_sym_FUNCTION] = anon_sym_TYPE, + [anon_sym_END_FUNCTION] = anon_sym_TYPE, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_SEMI] = anon_sym_SEMI, @@ -452,18 +476,16 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, [anon_sym_TRUE] = anon_sym_TRUE, [anon_sym_FALSE] = anon_sym_TRUE, - [anon_sym_VAR_INPUT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_OUTPUT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_IN_OUT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_TEMP] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_CONSTANT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_RETAIN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_NON_RETAIN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_CONSTANT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_RETAIN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_VAR_NON_RETAIN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_VAR] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_VAR_INPUT] = anon_sym_TYPE, + [anon_sym_VAR_OUTPUT] = anon_sym_TYPE, + [anon_sym_VAR_IN_OUT] = anon_sym_TYPE, + [anon_sym_VAR] = anon_sym_TYPE, + [anon_sym_VAR_TEMP] = anon_sym_TYPE, + [anon_sym_CONSTANT] = anon_sym_TYPE, + [anon_sym_VAR_CONSTANT] = anon_sym_TYPE, + [anon_sym_VAR_RETAIN] = anon_sym_TYPE, + [anon_sym_VAR_NON_RETAIN] = anon_sym_TYPE, + [anon_sym_END_VAR] = anon_sym_TYPE, [anon_sym_BOOL] = anon_sym_BOOL, [anon_sym_Bool] = anon_sym_BOOL, [anon_sym_INT] = anon_sym_BOOL, @@ -519,33 +541,33 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_WChar] = anon_sym_BOOL, [anon_sym_WCHAR] = anon_sym_BOOL, [anon_sym_wchar] = anon_sym_BOOL, - [anon_sym_ARRAY] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_ARRAY] = anon_sym_TYPE, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_OF] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_OF] = anon_sym_TYPE, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_POUND] = anon_sym_POUND, [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_IF] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_THEN] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_IF] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_ELSIF] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_ELSE] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_CASE] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_CASE] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_FOR] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_TO] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_BY] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_DO] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_FOR] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_WHILE] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_WHILE] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_REPEAT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_UNTIL] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_REPEAT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_REGION] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_END_REGION] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_IF] = anon_sym_TYPE, + [anon_sym_THEN] = anon_sym_TYPE, + [anon_sym_END_IF] = anon_sym_TYPE, + [anon_sym_ELSIF] = anon_sym_TYPE, + [anon_sym_ELSE] = anon_sym_TYPE, + [anon_sym_CASE] = anon_sym_TYPE, + [anon_sym_END_CASE] = anon_sym_TYPE, + [anon_sym_FOR] = anon_sym_TYPE, + [anon_sym_TO] = anon_sym_TYPE, + [anon_sym_BY] = anon_sym_TYPE, + [anon_sym_DO] = anon_sym_TYPE, + [anon_sym_END_FOR] = anon_sym_TYPE, + [anon_sym_WHILE] = anon_sym_TYPE, + [anon_sym_END_WHILE] = anon_sym_TYPE, + [anon_sym_REPEAT] = anon_sym_TYPE, + [anon_sym_UNTIL] = anon_sym_TYPE, + [anon_sym_END_REPEAT] = anon_sym_TYPE, + [anon_sym_REGION] = anon_sym_TYPE, + [anon_sym_END_REGION] = anon_sym_TYPE, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_NOT] = anon_sym_NOT, @@ -573,9 +595,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_line_comment] = sym_line_comment, [sym_block_comment] = sym_block_comment, [sym_c_style_comment] = sym_c_style_comment, - [anon_sym_EXIT] = anon_sym_ORGANIZATION_BLOCK, - [anon_sym_CONTINUE] = anon_sym_ORGANIZATION_BLOCK, + [anon_sym_EXIT] = anon_sym_TYPE, + [anon_sym_CONTINUE] = anon_sym_TYPE, [sym_source_file] = sym_source_file, + [sym_type_definition] = sym_type_definition, + [sym_data_block] = sym_data_block, [sym_organization_block] = sym_organization_block, [sym_function_block] = sym_function_block, [sym_function] = sym_function, @@ -621,11 +645,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_exit_statement] = sym_exit_statement, [sym_continue_statement] = sym_continue_statement, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, + [aux_sym_data_block_repeat1] = aux_sym_data_block_repeat1, [aux_sym_organization_block_repeat1] = aux_sym_organization_block_repeat1, - [aux_sym_organization_block_repeat2] = aux_sym_organization_block_repeat2, [aux_sym_function_repeat1] = aux_sym_function_repeat1, [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, - [aux_sym_var_declaration_repeat1] = aux_sym_var_declaration_repeat1, [aux_sym_fb_parameter_list_repeat1] = aux_sym_fb_parameter_list_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, @@ -640,7 +664,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_ORGANIZATION_BLOCK] = { + [anon_sym_TYPE] = { .visible = true, .named = true, }, @@ -660,10 +684,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_STRUCT] = { + .visible = true, + .named = true, + }, + [anon_sym_END_STRUCT] = { + .visible = true, + .named = true, + }, + [anon_sym_END_TYPE] = { + .visible = true, + .named = true, + }, + [anon_sym_DATA_BLOCK] = { + .visible = true, + .named = true, + }, + [anon_sym_NON_RETAIN] = { + .visible = true, + .named = true, + }, + [anon_sym_RETAIN] = { + .visible = true, + .named = true, + }, [anon_sym_BEGIN] = { .visible = true, .named = true, }, + [anon_sym_END_DATA_BLOCK] = { + .visible = true, + .named = true, + }, + [anon_sym_ORGANIZATION_BLOCK] = { + .visible = true, + .named = true, + }, [anon_sym_END_ORGANIZATION_BLOCK] = { .visible = true, .named = true, @@ -736,14 +792,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_RETAIN] = { - .visible = true, - .named = true, - }, - [anon_sym_NON_RETAIN] = { - .visible = true, - .named = true, - }, [anon_sym_VAR_CONSTANT] = { .visible = true, .named = true, @@ -1208,6 +1256,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_type_definition] = { + .visible = true, + .named = true, + }, + [sym_data_block] = { + .visible = true, + .named = true, + }, [sym_organization_block] = { .visible = true, .named = true, @@ -1388,11 +1444,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_organization_block_repeat1] = { + [aux_sym_type_definition_repeat1] = { .visible = false, .named = false, }, - [aux_sym_organization_block_repeat2] = { + [aux_sym_data_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_organization_block_repeat1] = { .visible = false, .named = false, }, @@ -1404,10 +1464,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_var_declaration_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_fb_parameter_list_repeat1] = { .visible = false, .named = false, @@ -1495,44 +1551,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 5, - [6] = 3, - [7] = 7, - [8] = 8, + [6] = 6, + [7] = 6, + [8] = 2, [9] = 9, - [10] = 9, - [11] = 9, - [12] = 12, - [13] = 12, - [14] = 9, - [15] = 12, - [16] = 12, - [17] = 9, - [18] = 12, - [19] = 9, - [20] = 12, - [21] = 9, - [22] = 12, - [23] = 9, - [24] = 12, - [25] = 9, - [26] = 12, - [27] = 9, - [28] = 12, - [29] = 9, - [30] = 12, - [31] = 9, - [32] = 12, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 34, + [10] = 10, + [11] = 11, + [12] = 11, + [13] = 13, + [14] = 11, + [15] = 11, + [16] = 13, + [17] = 11, + [18] = 13, + [19] = 13, + [20] = 11, + [21] = 13, + [22] = 11, + [23] = 13, + [24] = 11, + [25] = 13, + [26] = 11, + [27] = 13, + [28] = 11, + [29] = 13, + [30] = 11, + [31] = 13, + [32] = 11, + [33] = 13, + [34] = 11, + [35] = 13, + [36] = 13, + [37] = 37, [38] = 38, - [39] = 39, + [39] = 38, [40] = 40, - [41] = 34, + [41] = 41, [42] = 42, [43] = 43, [44] = 44, @@ -1565,7 +1621,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [71] = 71, [72] = 72, [73] = 73, - [74] = 74, + [74] = 43, [75] = 75, [76] = 76, [77] = 77, @@ -1594,198 +1650,198 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [100] = 100, [101] = 101, [102] = 102, - [103] = 103, - [104] = 34, - [105] = 48, - [106] = 56, - [107] = 34, - [108] = 34, - [109] = 34, - [110] = 34, - [111] = 34, - [112] = 34, - [113] = 34, - [114] = 114, - [115] = 40, - [116] = 42, - [117] = 49, + [103] = 38, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 38, + [108] = 38, + [109] = 38, + [110] = 38, + [111] = 38, + [112] = 38, + [113] = 38, + [114] = 38, + [115] = 115, + [116] = 38, + [117] = 46, [118] = 118, - [119] = 76, - [120] = 83, - [121] = 90, - [122] = 114, - [123] = 40, - [124] = 42, - [125] = 49, - [126] = 69, - [127] = 76, - [128] = 83, - [129] = 90, - [130] = 114, - [131] = 40, - [132] = 42, - [133] = 118, - [134] = 49, - [135] = 69, - [136] = 76, - [137] = 83, - [138] = 90, - [139] = 114, - [140] = 114, - [141] = 40, - [142] = 42, - [143] = 49, - [144] = 69, - [145] = 76, - [146] = 83, - [147] = 90, - [148] = 114, - [149] = 40, - [150] = 42, - [151] = 49, - [152] = 69, - [153] = 76, - [154] = 83, - [155] = 90, - [156] = 114, - [157] = 40, - [158] = 42, - [159] = 49, - [160] = 69, - [161] = 76, - [162] = 83, - [163] = 90, - [164] = 114, - [165] = 165, - [166] = 40, - [167] = 42, + [119] = 106, + [120] = 115, + [121] = 121, + [122] = 122, + [123] = 56, + [124] = 65, + [125] = 43, + [126] = 84, + [127] = 46, + [128] = 128, + [129] = 106, + [130] = 115, + [131] = 131, + [132] = 122, + [133] = 56, + [134] = 65, + [135] = 43, + [136] = 84, + [137] = 46, + [138] = 138, + [139] = 106, + [140] = 115, + [141] = 141, + [142] = 122, + [143] = 56, + [144] = 65, + [145] = 145, + [146] = 84, + [147] = 46, + [148] = 148, + [149] = 106, + [150] = 115, + [151] = 151, + [152] = 122, + [153] = 56, + [154] = 65, + [155] = 43, + [156] = 84, + [157] = 46, + [158] = 158, + [159] = 106, + [160] = 115, + [161] = 161, + [162] = 122, + [163] = 56, + [164] = 65, + [165] = 43, + [166] = 84, + [167] = 46, [168] = 168, - [169] = 49, - [170] = 69, - [171] = 76, - [172] = 83, - [173] = 90, - [174] = 114, - [175] = 40, - [176] = 42, - [177] = 177, - [178] = 49, - [179] = 69, - [180] = 76, - [181] = 83, - [182] = 90, - [183] = 114, - [184] = 40, - [185] = 42, - [186] = 186, - [187] = 49, - [188] = 69, - [189] = 76, - [190] = 83, - [191] = 90, - [192] = 114, - [193] = 40, - [194] = 42, - [195] = 49, - [196] = 69, - [197] = 76, - [198] = 83, - [199] = 90, - [200] = 114, - [201] = 40, - [202] = 42, - [203] = 49, - [204] = 69, - [205] = 76, - [206] = 83, - [207] = 90, - [208] = 186, - [209] = 118, - [210] = 186, - [211] = 118, - [212] = 186, - [213] = 118, - [214] = 186, - [215] = 118, - [216] = 186, - [217] = 118, - [218] = 186, - [219] = 118, - [220] = 186, - [221] = 118, - [222] = 186, - [223] = 118, - [224] = 186, - [225] = 118, - [226] = 186, - [227] = 118, - [228] = 186, - [229] = 69, - [230] = 230, + [169] = 106, + [170] = 115, + [171] = 122, + [172] = 122, + [173] = 56, + [174] = 65, + [175] = 43, + [176] = 84, + [177] = 46, + [178] = 178, + [179] = 106, + [180] = 115, + [181] = 181, + [182] = 122, + [183] = 56, + [184] = 65, + [185] = 43, + [186] = 84, + [187] = 46, + [188] = 188, + [189] = 106, + [190] = 115, + [191] = 191, + [192] = 122, + [193] = 56, + [194] = 65, + [195] = 43, + [196] = 84, + [197] = 46, + [198] = 198, + [199] = 106, + [200] = 115, + [201] = 201, + [202] = 122, + [203] = 56, + [204] = 65, + [205] = 43, + [206] = 84, + [207] = 46, + [208] = 208, + [209] = 106, + [210] = 115, + [211] = 211, + [212] = 122, + [213] = 56, + [214] = 65, + [215] = 43, + [216] = 84, + [217] = 46, + [218] = 105, + [219] = 106, + [220] = 115, + [221] = 221, + [222] = 122, + [223] = 56, + [224] = 65, + [225] = 43, + [226] = 84, + [227] = 46, + [228] = 228, + [229] = 106, + [230] = 115, [231] = 231, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 232, - [237] = 234, + [232] = 122, + [233] = 56, + [234] = 65, + [235] = 43, + [236] = 84, + [237] = 237, [238] = 238, - [239] = 234, - [240] = 232, - [241] = 235, - [242] = 238, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 238, - [248] = 235, - [249] = 234, - [250] = 232, - [251] = 234, - [252] = 232, - [253] = 232, - [254] = 232, - [255] = 232, - [256] = 234, - [257] = 230, - [258] = 232, - [259] = 234, - [260] = 234, - [261] = 234, - [262] = 232, - [263] = 232, - [264] = 234, + [239] = 239, + [240] = 145, + [241] = 83, + [242] = 145, + [243] = 83, + [244] = 145, + [245] = 83, + [246] = 145, + [247] = 83, + [248] = 145, + [249] = 83, + [250] = 145, + [251] = 83, + [252] = 145, + [253] = 83, + [254] = 145, + [255] = 83, + [256] = 145, + [257] = 83, + [258] = 145, + [259] = 83, + [260] = 145, + [261] = 83, + [262] = 145, + [263] = 83, + [264] = 104, [265] = 265, - [266] = 234, - [267] = 232, - [268] = 231, - [269] = 234, - [270] = 231, - [271] = 238, - [272] = 238, - [273] = 235, - [274] = 235, - [275] = 230, - [276] = 238, - [277] = 235, - [278] = 238, - [279] = 238, - [280] = 235, - [281] = 235, - [282] = 230, - [283] = 238, - [284] = 231, - [285] = 238, - [286] = 235, - [287] = 238, - [288] = 235, - [289] = 238, - [290] = 235, - [291] = 235, - [292] = 292, - [293] = 293, - [294] = 294, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 267, + [273] = 268, + [274] = 268, + [275] = 267, + [276] = 266, + [277] = 265, + [278] = 270, + [279] = 269, + [280] = 269, + [281] = 270, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 267, + [287] = 267, + [288] = 268, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 268, + [293] = 267, + [294] = 268, [295] = 295, [296] = 296, [297] = 297, @@ -1820,11 +1876,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [326] = 326, [327] = 327, [328] = 328, - [329] = 329, + [329] = 268, [330] = 330, [331] = 331, [332] = 332, - [333] = 329, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, @@ -1845,7 +1901,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [351] = 351, [352] = 352, [353] = 353, - [354] = 331, + [354] = 354, [355] = 355, [356] = 356, [357] = 357, @@ -1860,7 +1916,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [366] = 366, [367] = 367, [368] = 368, - [369] = 328, + [369] = 369, [370] = 370, [371] = 371, [372] = 372, @@ -1870,927 +1926,927 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [376] = 376, [377] = 377, [378] = 378, - [379] = 379, + [379] = 267, [380] = 380, - [381] = 303, - [382] = 355, - [383] = 372, - [384] = 296, - [385] = 307, - [386] = 325, - [387] = 342, - [388] = 295, - [389] = 230, - [390] = 334, - [391] = 374, - [392] = 230, - [393] = 231, - [394] = 363, - [395] = 364, - [396] = 365, - [397] = 378, - [398] = 231, - [399] = 230, - [400] = 231, - [401] = 328, - [402] = 377, - [403] = 230, - [404] = 292, - [405] = 303, - [406] = 230, - [407] = 231, - [408] = 331, - [409] = 329, - [410] = 230, - [411] = 322, - [412] = 379, - [413] = 362, - [414] = 231, - [415] = 357, - [416] = 379, - [417] = 357, - [418] = 315, - [419] = 374, - [420] = 230, - [421] = 230, - [422] = 231, - [423] = 231, - [424] = 347, - [425] = 231, - [426] = 347, - [427] = 360, - [428] = 314, - [429] = 341, - [430] = 345, - [431] = 348, - [432] = 350, - [433] = 360, - [434] = 353, - [435] = 356, - [436] = 293, - [437] = 344, - [438] = 297, - [439] = 299, - [440] = 300, - [441] = 302, - [442] = 324, - [443] = 326, - [444] = 327, - [445] = 314, - [446] = 343, - [447] = 344, - [448] = 341, - [449] = 355, - [450] = 372, - [451] = 296, - [452] = 307, - [453] = 325, - [454] = 342, - [455] = 345, - [456] = 295, - [457] = 334, - [458] = 348, - [459] = 350, - [460] = 230, - [461] = 363, - [462] = 364, - [463] = 365, - [464] = 378, - [465] = 315, - [466] = 353, - [467] = 356, - [468] = 231, - [469] = 328, - [470] = 377, - [471] = 292, - [472] = 293, - [473] = 294, - [474] = 331, - [475] = 329, - [476] = 322, - [477] = 297, - [478] = 299, - [479] = 362, - [480] = 300, - [481] = 302, - [482] = 324, - [483] = 326, - [484] = 327, - [485] = 343, - [486] = 294, - [487] = 356, - [488] = 303, - [489] = 341, - [490] = 345, - [491] = 348, - [492] = 331, - [493] = 350, - [494] = 353, - [495] = 356, - [496] = 293, - [497] = 294, - [498] = 297, - [499] = 299, - [500] = 329, - [501] = 300, - [502] = 302, - [503] = 324, - [504] = 326, - [505] = 327, - [506] = 379, - [507] = 357, - [508] = 315, - [509] = 374, - [510] = 322, - [511] = 343, - [512] = 344, - [513] = 355, - [514] = 372, - [515] = 296, - [516] = 362, - [517] = 307, - [518] = 314, - [519] = 357, - [520] = 315, - [521] = 374, - [522] = 347, - [523] = 360, - [524] = 347, - [525] = 314, - [526] = 341, - [527] = 345, - [528] = 348, - [529] = 350, - [530] = 360, - [531] = 353, - [532] = 328, - [533] = 356, - [534] = 293, - [535] = 294, - [536] = 297, - [537] = 299, - [538] = 300, - [539] = 302, - [540] = 324, - [541] = 326, - [542] = 327, - [543] = 314, - [544] = 343, - [545] = 344, - [546] = 355, - [547] = 372, - [548] = 296, - [549] = 307, - [550] = 379, - [551] = 357, - [552] = 315, - [553] = 374, - [554] = 341, - [555] = 325, - [556] = 342, - [557] = 295, - [558] = 334, - [559] = 345, - [560] = 348, - [561] = 350, - [562] = 363, - [563] = 364, - [564] = 365, - [565] = 378, - [566] = 353, - [567] = 331, - [568] = 356, - [569] = 347, - [570] = 360, - [571] = 328, - [572] = 377, - [573] = 292, - [574] = 303, - [575] = 314, - [576] = 341, - [577] = 345, - [578] = 348, - [579] = 350, - [580] = 293, - [581] = 353, - [582] = 331, - [583] = 294, - [584] = 293, - [585] = 294, - [586] = 297, - [587] = 299, - [588] = 300, - [589] = 302, - [590] = 324, - [591] = 326, - [592] = 327, - [593] = 329, - [594] = 343, - [595] = 344, - [596] = 355, - [597] = 372, - [598] = 296, - [599] = 307, - [600] = 379, - [601] = 357, - [602] = 315, - [603] = 374, - [604] = 322, - [605] = 325, - [606] = 342, - [607] = 295, - [608] = 334, - [609] = 297, - [610] = 299, - [611] = 362, - [612] = 363, - [613] = 364, - [614] = 365, - [615] = 378, - [616] = 300, - [617] = 302, - [618] = 324, - [619] = 347, - [620] = 360, - [621] = 328, - [622] = 377, - [623] = 292, - [624] = 303, - [625] = 314, - [626] = 341, - [627] = 345, - [628] = 348, - [629] = 350, - [630] = 326, - [631] = 353, - [632] = 331, - [633] = 356, - [634] = 293, - [635] = 294, - [636] = 297, - [637] = 299, - [638] = 300, - [639] = 302, - [640] = 324, - [641] = 326, - [642] = 327, - [643] = 329, - [644] = 343, - [645] = 344, - [646] = 355, - [647] = 372, - [648] = 296, - [649] = 307, - [650] = 327, - [651] = 329, - [652] = 343, - [653] = 344, - [654] = 322, - [655] = 325, - [656] = 342, - [657] = 295, - [658] = 334, - [659] = 355, - [660] = 372, - [661] = 362, - [662] = 363, - [663] = 364, - [664] = 365, - [665] = 378, - [666] = 296, - [667] = 307, - [668] = 379, - [669] = 357, - [670] = 315, - [671] = 374, - [672] = 328, - [673] = 377, - [674] = 292, - [675] = 303, - [676] = 325, - [677] = 342, - [678] = 295, - [679] = 334, - [680] = 363, - [681] = 331, - [682] = 364, - [683] = 365, - [684] = 378, - [685] = 347, - [686] = 360, - [687] = 328, - [688] = 329, - [689] = 377, - [690] = 292, + [381] = 381, + [382] = 267, + [383] = 383, + [384] = 268, + [385] = 385, + [386] = 386, + [387] = 267, + [388] = 268, + [389] = 268, + [390] = 390, + [391] = 267, + [392] = 392, + [393] = 268, + [394] = 394, + [395] = 267, + [396] = 268, + [397] = 397, + [398] = 267, + [399] = 268, + [400] = 400, + [401] = 267, + [402] = 402, + [403] = 269, + [404] = 269, + [405] = 266, + [406] = 265, + [407] = 270, + [408] = 270, + [409] = 269, + [410] = 269, + [411] = 270, + [412] = 270, + [413] = 269, + [414] = 270, + [415] = 270, + [416] = 270, + [417] = 269, + [418] = 265, + [419] = 270, + [420] = 266, + [421] = 270, + [422] = 269, + [423] = 269, + [424] = 270, + [425] = 269, + [426] = 269, + [427] = 427, + [428] = 428, + [429] = 290, + [430] = 385, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 333, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 265, + [441] = 265, + [442] = 392, + [443] = 346, + [444] = 307, + [445] = 266, + [446] = 375, + [447] = 381, + [448] = 313, + [449] = 321, + [450] = 323, + [451] = 326, + [452] = 327, + [453] = 308, + [454] = 330, + [455] = 335, + [456] = 356, + [457] = 360, + [458] = 363, + [459] = 365, + [460] = 367, + [461] = 368, + [462] = 291, + [463] = 392, + [464] = 346, + [465] = 307, + [466] = 308, + [467] = 318, + [468] = 331, + [469] = 344, + [470] = 357, + [471] = 350, + [472] = 298, + [473] = 300, + [474] = 303, + [475] = 318, + [476] = 265, + [477] = 316, + [478] = 324, + [479] = 340, + [480] = 342, + [481] = 331, + [482] = 344, + [483] = 266, + [484] = 385, + [485] = 305, + [486] = 306, + [487] = 309, + [488] = 357, + [489] = 333, + [490] = 290, + [491] = 289, + [492] = 350, + [493] = 314, + [494] = 298, + [495] = 265, + [496] = 354, + [497] = 300, + [498] = 303, + [499] = 361, + [500] = 265, + [501] = 316, + [502] = 324, + [503] = 340, + [504] = 342, + [505] = 266, + [506] = 375, + [507] = 381, + [508] = 266, + [509] = 385, + [510] = 305, + [511] = 306, + [512] = 265, + [513] = 309, + [514] = 313, + [515] = 333, + [516] = 266, + [517] = 290, + [518] = 289, + [519] = 321, + [520] = 323, + [521] = 314, + [522] = 326, + [523] = 327, + [524] = 265, + [525] = 330, + [526] = 265, + [527] = 335, + [528] = 356, + [529] = 360, + [530] = 266, + [531] = 265, + [532] = 363, + [533] = 265, + [534] = 365, + [535] = 367, + [536] = 266, + [537] = 266, + [538] = 368, + [539] = 351, + [540] = 394, + [541] = 394, + [542] = 354, + [543] = 361, + [544] = 266, + [545] = 291, + [546] = 351, + [547] = 266, + [548] = 290, + [549] = 350, + [550] = 298, + [551] = 300, + [552] = 303, + [553] = 381, + [554] = 314, + [555] = 316, + [556] = 324, + [557] = 340, + [558] = 342, + [559] = 305, + [560] = 306, + [561] = 309, + [562] = 313, + [563] = 321, + [564] = 385, + [565] = 305, + [566] = 306, + [567] = 309, + [568] = 323, + [569] = 326, + [570] = 327, + [571] = 330, + [572] = 335, + [573] = 333, + [574] = 356, + [575] = 360, + [576] = 363, + [577] = 365, + [578] = 367, + [579] = 368, + [580] = 291, + [581] = 392, + [582] = 346, + [583] = 289, + [584] = 307, + [585] = 308, + [586] = 318, + [587] = 331, + [588] = 351, + [589] = 394, + [590] = 354, + [591] = 361, + [592] = 289, + [593] = 344, + [594] = 357, + [595] = 351, + [596] = 394, + [597] = 354, + [598] = 361, + [599] = 314, + [600] = 375, + [601] = 381, + [602] = 375, + [603] = 381, + [604] = 385, + [605] = 313, + [606] = 321, + [607] = 323, + [608] = 313, + [609] = 321, + [610] = 323, + [611] = 326, + [612] = 327, + [613] = 326, + [614] = 330, + [615] = 327, + [616] = 335, + [617] = 356, + [618] = 360, + [619] = 363, + [620] = 365, + [621] = 367, + [622] = 368, + [623] = 291, + [624] = 392, + [625] = 346, + [626] = 307, + [627] = 308, + [628] = 318, + [629] = 331, + [630] = 344, + [631] = 357, + [632] = 351, + [633] = 394, + [634] = 354, + [635] = 361, + [636] = 330, + [637] = 350, + [638] = 298, + [639] = 300, + [640] = 303, + [641] = 333, + [642] = 335, + [643] = 356, + [644] = 316, + [645] = 324, + [646] = 340, + [647] = 342, + [648] = 360, + [649] = 363, + [650] = 365, + [651] = 367, + [652] = 375, + [653] = 381, + [654] = 385, + [655] = 305, + [656] = 306, + [657] = 309, + [658] = 313, + [659] = 321, + [660] = 323, + [661] = 326, + [662] = 327, + [663] = 368, + [664] = 330, + [665] = 333, + [666] = 335, + [667] = 356, + [668] = 360, + [669] = 363, + [670] = 365, + [671] = 367, + [672] = 368, + [673] = 291, + [674] = 392, + [675] = 346, + [676] = 291, + [677] = 307, + [678] = 308, + [679] = 318, + [680] = 331, + [681] = 344, + [682] = 357, + [683] = 351, + [684] = 394, + [685] = 354, + [686] = 361, + [687] = 289, + [688] = 350, + [689] = 298, + [690] = 300, [691] = 303, - [692] = 314, - [693] = 341, - [694] = 345, - [695] = 379, - [696] = 357, - [697] = 315, - [698] = 374, - [699] = 322, - [700] = 348, - [701] = 350, - [702] = 353, - [703] = 331, - [704] = 356, - [705] = 362, - [706] = 293, - [707] = 294, - [708] = 297, - [709] = 299, - [710] = 300, - [711] = 302, - [712] = 324, - [713] = 347, - [714] = 360, - [715] = 326, - [716] = 327, - [717] = 329, - [718] = 343, - [719] = 314, - [720] = 341, - [721] = 345, - [722] = 348, - [723] = 350, - [724] = 344, - [725] = 353, - [726] = 355, - [727] = 356, - [728] = 293, - [729] = 294, - [730] = 297, - [731] = 299, - [732] = 300, - [733] = 302, - [734] = 324, - [735] = 326, - [736] = 327, - [737] = 372, - [738] = 343, - [739] = 344, - [740] = 355, - [741] = 372, - [742] = 296, - [743] = 307, - [744] = 296, - [745] = 325, - [746] = 342, - [747] = 295, - [748] = 334, - [749] = 307, - [750] = 379, - [751] = 363, - [752] = 364, - [753] = 365, - [754] = 378, - [755] = 357, - [756] = 328, - [757] = 377, - [758] = 292, - [759] = 303, - [760] = 331, - [761] = 329, - [762] = 322, - [763] = 315, - [764] = 362, - [765] = 374, - [766] = 322, - [767] = 325, - [768] = 342, - [769] = 295, - [770] = 334, - [771] = 362, - [772] = 363, - [773] = 364, - [774] = 365, - [775] = 378, - [776] = 379, - [777] = 357, - [778] = 347, - [779] = 360, - [780] = 328, - [781] = 377, - [782] = 292, - [783] = 303, - [784] = 314, - [785] = 341, - [786] = 345, - [787] = 348, - [788] = 350, - [789] = 315, - [790] = 353, - [791] = 331, - [792] = 356, - [793] = 293, - [794] = 294, - [795] = 297, - [796] = 299, - [797] = 300, - [798] = 302, - [799] = 324, - [800] = 326, - [801] = 327, - [802] = 329, - [803] = 343, - [804] = 344, - [805] = 355, - [806] = 372, - [807] = 296, - [808] = 307, - [809] = 379, - [810] = 357, - [811] = 315, - [812] = 374, - [813] = 322, - [814] = 325, - [815] = 342, - [816] = 295, - [817] = 334, - [818] = 374, - [819] = 322, - [820] = 362, - [821] = 363, - [822] = 364, - [823] = 365, - [824] = 378, - [825] = 325, - [826] = 342, - [827] = 295, - [828] = 334, - [829] = 347, - [830] = 360, - [831] = 328, - [832] = 377, - [833] = 292, - [834] = 303, - [835] = 314, - [836] = 341, - [837] = 345, - [838] = 348, - [839] = 350, - [840] = 353, - [841] = 331, - [842] = 356, - [843] = 293, - [844] = 294, - [845] = 297, - [846] = 299, - [847] = 300, - [848] = 302, - [849] = 324, - [850] = 326, - [851] = 327, - [852] = 329, - [853] = 343, - [854] = 344, - [855] = 355, - [856] = 372, - [857] = 296, - [858] = 307, - [859] = 362, - [860] = 363, - [861] = 364, - [862] = 365, - [863] = 322, - [864] = 325, - [865] = 342, - [866] = 295, - [867] = 334, - [868] = 378, - [869] = 362, - [870] = 363, - [871] = 364, + [692] = 392, + [693] = 346, + [694] = 314, + [695] = 316, + [696] = 324, + [697] = 340, + [698] = 342, + [699] = 290, + [700] = 307, + [701] = 308, + [702] = 318, + [703] = 375, + [704] = 381, + [705] = 385, + [706] = 305, + [707] = 306, + [708] = 309, + [709] = 313, + [710] = 321, + [711] = 323, + [712] = 326, + [713] = 327, + [714] = 331, + [715] = 330, + [716] = 333, + [717] = 335, + [718] = 356, + [719] = 360, + [720] = 363, + [721] = 365, + [722] = 367, + [723] = 368, + [724] = 291, + [725] = 392, + [726] = 346, + [727] = 290, + [728] = 307, + [729] = 308, + [730] = 318, + [731] = 331, + [732] = 344, + [733] = 357, + [734] = 344, + [735] = 357, + [736] = 351, + [737] = 394, + [738] = 289, + [739] = 350, + [740] = 298, + [741] = 300, + [742] = 303, + [743] = 354, + [744] = 361, + [745] = 314, + [746] = 316, + [747] = 324, + [748] = 340, + [749] = 342, + [750] = 350, + [751] = 298, + [752] = 300, + [753] = 303, + [754] = 385, + [755] = 305, + [756] = 306, + [757] = 309, + [758] = 316, + [759] = 324, + [760] = 340, + [761] = 342, + [762] = 333, + [763] = 375, + [764] = 381, + [765] = 385, + [766] = 305, + [767] = 306, + [768] = 309, + [769] = 313, + [770] = 321, + [771] = 323, + [772] = 290, + [773] = 326, + [774] = 327, + [775] = 330, + [776] = 333, + [777] = 335, + [778] = 351, + [779] = 394, + [780] = 354, + [781] = 361, + [782] = 289, + [783] = 356, + [784] = 360, + [785] = 363, + [786] = 365, + [787] = 367, + [788] = 368, + [789] = 314, + [790] = 291, + [791] = 392, + [792] = 346, + [793] = 290, + [794] = 307, + [795] = 308, + [796] = 318, + [797] = 375, + [798] = 381, + [799] = 331, + [800] = 344, + [801] = 357, + [802] = 351, + [803] = 313, + [804] = 321, + [805] = 323, + [806] = 326, + [807] = 327, + [808] = 394, + [809] = 330, + [810] = 354, + [811] = 335, + [812] = 356, + [813] = 360, + [814] = 363, + [815] = 365, + [816] = 367, + [817] = 368, + [818] = 291, + [819] = 392, + [820] = 346, + [821] = 361, + [822] = 307, + [823] = 308, + [824] = 318, + [825] = 331, + [826] = 344, + [827] = 357, + [828] = 289, + [829] = 350, + [830] = 298, + [831] = 300, + [832] = 303, + [833] = 350, + [834] = 298, + [835] = 316, + [836] = 324, + [837] = 340, + [838] = 342, + [839] = 300, + [840] = 385, + [841] = 305, + [842] = 306, + [843] = 309, + [844] = 333, + [845] = 290, + [846] = 289, + [847] = 303, + [848] = 314, + [849] = 314, + [850] = 316, + [851] = 324, + [852] = 340, + [853] = 342, + [854] = 375, + [855] = 381, + [856] = 385, + [857] = 305, + [858] = 306, + [859] = 309, + [860] = 313, + [861] = 321, + [862] = 323, + [863] = 326, + [864] = 327, + [865] = 351, + [866] = 330, + [867] = 333, + [868] = 335, + [869] = 356, + [870] = 360, + [871] = 363, [872] = 365, - [873] = 378, - [874] = 347, - [875] = 360, - [876] = 377, - [877] = 328, - [878] = 377, - [879] = 292, - [880] = 303, - [881] = 292, - [882] = 379, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 889, - [893] = 893, - [894] = 891, - [895] = 889, - [896] = 893, - [897] = 891, - [898] = 889, - [899] = 893, - [900] = 891, - [901] = 889, - [902] = 893, - [903] = 891, - [904] = 889, - [905] = 893, - [906] = 891, - [907] = 889, - [908] = 893, - [909] = 891, - [910] = 889, - [911] = 893, - [912] = 891, - [913] = 889, - [914] = 893, - [915] = 891, - [916] = 889, - [917] = 893, - [918] = 891, - [919] = 889, - [920] = 893, - [921] = 891, - [922] = 889, - [923] = 893, - [924] = 883, - [925] = 925, - [926] = 887, - [927] = 927, - [928] = 891, - [929] = 929, - [930] = 930, - [931] = 883, - [932] = 925, - [933] = 887, - [934] = 934, - [935] = 929, - [936] = 930, - [937] = 883, - [938] = 925, - [939] = 887, - [940] = 940, - [941] = 929, - [942] = 930, - [943] = 943, - [944] = 887, - [945] = 929, - [946] = 929, - [947] = 930, - [948] = 883, - [949] = 925, - [950] = 887, - [951] = 893, - [952] = 925, - [953] = 929, - [954] = 930, - [955] = 883, - [956] = 925, - [957] = 887, - [958] = 883, - [959] = 959, - [960] = 929, - [961] = 930, - [962] = 883, - [963] = 925, - [964] = 887, - [965] = 965, - [966] = 966, - [967] = 929, - [968] = 930, - [969] = 883, - [970] = 925, - [971] = 887, - [972] = 972, - [973] = 973, - [974] = 929, - [975] = 930, - [976] = 883, - [977] = 925, - [978] = 887, - [979] = 979, - [980] = 929, - [981] = 930, - [982] = 883, - [983] = 925, - [984] = 887, - [985] = 930, - [986] = 986, - [987] = 929, - [988] = 930, - [989] = 883, - [990] = 925, - [991] = 887, + [873] = 367, + [874] = 368, + [875] = 291, + [876] = 392, + [877] = 346, + [878] = 290, + [879] = 307, + [880] = 308, + [881] = 318, + [882] = 331, + [883] = 344, + [884] = 357, + [885] = 351, + [886] = 394, + [887] = 354, + [888] = 361, + [889] = 289, + [890] = 350, + [891] = 298, + [892] = 300, + [893] = 303, + [894] = 394, + [895] = 354, + [896] = 314, + [897] = 316, + [898] = 324, + [899] = 340, + [900] = 342, + [901] = 361, + [902] = 289, + [903] = 350, + [904] = 298, + [905] = 375, + [906] = 381, + [907] = 385, + [908] = 305, + [909] = 306, + [910] = 309, + [911] = 313, + [912] = 321, + [913] = 323, + [914] = 326, + [915] = 327, + [916] = 300, + [917] = 330, + [918] = 333, + [919] = 335, + [920] = 356, + [921] = 360, + [922] = 363, + [923] = 365, + [924] = 367, + [925] = 368, + [926] = 291, + [927] = 392, + [928] = 346, + [929] = 290, + [930] = 307, + [931] = 308, + [932] = 318, + [933] = 331, + [934] = 344, + [935] = 357, + [936] = 351, + [937] = 394, + [938] = 354, + [939] = 361, + [940] = 289, + [941] = 350, + [942] = 298, + [943] = 300, + [944] = 303, + [945] = 303, + [946] = 314, + [947] = 316, + [948] = 324, + [949] = 340, + [950] = 342, + [951] = 314, + [952] = 316, + [953] = 324, + [954] = 340, + [955] = 375, + [956] = 381, + [957] = 385, + [958] = 305, + [959] = 306, + [960] = 309, + [961] = 313, + [962] = 321, + [963] = 323, + [964] = 326, + [965] = 327, + [966] = 342, + [967] = 330, + [968] = 333, + [969] = 335, + [970] = 356, + [971] = 360, + [972] = 363, + [973] = 365, + [974] = 367, + [975] = 368, + [976] = 291, + [977] = 392, + [978] = 346, + [979] = 290, + [980] = 307, + [981] = 308, + [982] = 318, + [983] = 331, + [984] = 344, + [985] = 357, + [986] = 375, + [987] = 290, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, [992] = 992, - [993] = 929, - [994] = 930, - [995] = 885, - [996] = 885, - [997] = 885, - [998] = 885, - [999] = 885, - [1000] = 885, - [1001] = 885, - [1002] = 885, - [1003] = 885, - [1004] = 885, - [1005] = 885, - [1006] = 925, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1014, - [1016] = 1014, - [1017] = 1014, - [1018] = 1018, - [1019] = 1019, - [1020] = 1014, - [1021] = 1021, - [1022] = 1014, - [1023] = 1014, - [1024] = 1014, - [1025] = 1025, - [1026] = 1014, - [1027] = 1014, - [1028] = 1014, - [1029] = 1014, - [1030] = 1030, - [1031] = 1030, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 991, + [998] = 992, + [999] = 993, + [1000] = 991, + [1001] = 992, + [1002] = 993, + [1003] = 991, + [1004] = 992, + [1005] = 993, + [1006] = 1006, + [1007] = 991, + [1008] = 992, + [1009] = 993, + [1010] = 991, + [1011] = 992, + [1012] = 993, + [1013] = 991, + [1014] = 992, + [1015] = 993, + [1016] = 991, + [1017] = 992, + [1018] = 993, + [1019] = 991, + [1020] = 992, + [1021] = 993, + [1022] = 991, + [1023] = 992, + [1024] = 993, + [1025] = 991, + [1026] = 992, + [1027] = 993, + [1028] = 991, + [1029] = 992, + [1030] = 993, + [1031] = 1031, [1032] = 1032, - [1033] = 1033, + [1033] = 988, [1034] = 1034, - [1035] = 1030, - [1036] = 1032, - [1037] = 1033, - [1038] = 1038, - [1039] = 1039, - [1040] = 1032, - [1041] = 1033, - [1042] = 1042, - [1043] = 1030, - [1044] = 1044, - [1045] = 1032, - [1046] = 1046, - [1047] = 1033, + [1035] = 989, + [1036] = 1036, + [1037] = 1037, + [1038] = 1031, + [1039] = 1032, + [1040] = 988, + [1041] = 1032, + [1042] = 993, + [1043] = 1036, + [1044] = 1037, + [1045] = 1031, + [1046] = 1032, + [1047] = 988, [1048] = 1048, - [1049] = 1049, - [1050] = 1030, - [1051] = 1051, - [1052] = 1032, - [1053] = 1053, - [1054] = 1033, - [1055] = 1030, - [1056] = 1032, - [1057] = 1033, - [1058] = 1058, - [1059] = 1059, - [1060] = 1030, - [1061] = 1032, - [1062] = 1033, - [1063] = 1030, - [1064] = 1032, - [1065] = 1033, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1030, + [1049] = 988, + [1050] = 1036, + [1051] = 1037, + [1052] = 1031, + [1053] = 1032, + [1054] = 1054, + [1055] = 1031, + [1056] = 1056, + [1057] = 1036, + [1058] = 1037, + [1059] = 1031, + [1060] = 1032, + [1061] = 988, + [1062] = 1036, + [1063] = 1037, + [1064] = 1031, + [1065] = 1032, + [1066] = 988, + [1067] = 996, + [1068] = 1036, + [1069] = 1037, + [1070] = 1031, [1071] = 1032, - [1072] = 1033, - [1073] = 1033, - [1074] = 1030, - [1075] = 1075, - [1076] = 1032, - [1077] = 1077, - [1078] = 1033, - [1079] = 1030, + [1072] = 988, + [1073] = 1036, + [1074] = 1036, + [1075] = 1037, + [1076] = 1031, + [1077] = 1032, + [1078] = 988, + [1079] = 991, [1080] = 1080, - [1081] = 1032, - [1082] = 1082, - [1083] = 1033, - [1084] = 1084, - [1085] = 1085, + [1081] = 1036, + [1082] = 1037, + [1083] = 1031, + [1084] = 1032, + [1085] = 988, [1086] = 1086, - [1087] = 1051, - [1088] = 1084, - [1089] = 1085, - [1090] = 1086, - [1091] = 1067, - [1092] = 1084, - [1093] = 1085, - [1094] = 1086, - [1095] = 1095, - [1096] = 1051, - [1097] = 1084, - [1098] = 1085, - [1099] = 1086, - [1100] = 1051, - [1101] = 1084, - [1102] = 1085, - [1103] = 1086, - [1104] = 1104, - [1105] = 1051, - [1106] = 1084, - [1107] = 1085, - [1108] = 1086, - [1109] = 1051, - [1110] = 1084, - [1111] = 1085, - [1112] = 1086, - [1113] = 1051, - [1114] = 1084, - [1115] = 1085, - [1116] = 1086, - [1117] = 1117, - [1118] = 1030, - [1119] = 1051, - [1120] = 1084, - [1121] = 1085, - [1122] = 1086, - [1123] = 1051, - [1124] = 1084, - [1125] = 1085, - [1126] = 1086, - [1127] = 1084, - [1128] = 1051, - [1129] = 1084, - [1130] = 1085, - [1131] = 1086, - [1132] = 1085, - [1133] = 1051, - [1134] = 1086, - [1135] = 1032, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1067, - [1141] = 1067, - [1142] = 1067, - [1143] = 1067, - [1144] = 1067, - [1145] = 1067, - [1146] = 1067, - [1147] = 1067, - [1148] = 1067, - [1149] = 1067, - [1150] = 1051, + [1087] = 992, + [1088] = 1036, + [1089] = 1037, + [1090] = 1031, + [1091] = 1032, + [1092] = 988, + [1093] = 995, + [1094] = 1037, + [1095] = 1036, + [1096] = 1037, + [1097] = 1031, + [1098] = 1032, + [1099] = 988, + [1100] = 1100, + [1101] = 1101, + [1102] = 1036, + [1103] = 1037, + [1104] = 1031, + [1105] = 1032, + [1106] = 988, + [1107] = 1107, + [1108] = 1108, + [1109] = 1036, + [1110] = 1037, + [1111] = 989, + [1112] = 989, + [1113] = 989, + [1114] = 989, + [1115] = 989, + [1116] = 989, + [1117] = 989, + [1118] = 989, + [1119] = 989, + [1120] = 989, + [1121] = 989, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1129, + [1137] = 1129, + [1138] = 1129, + [1139] = 1129, + [1140] = 1129, + [1141] = 1129, + [1142] = 1129, + [1143] = 1129, + [1144] = 1129, + [1145] = 1129, + [1146] = 1129, + [1147] = 1129, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 230, + [1153] = 1153, [1154] = 1154, - [1155] = 231, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, + [1155] = 1155, + [1156] = 1150, + [1157] = 1151, + [1158] = 1152, [1159] = 1159, - [1160] = 1160, + [1160] = 1152, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, + [1162] = 1150, + [1163] = 1151, + [1164] = 1152, [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, + [1166] = 1150, + [1167] = 1151, + [1168] = 1152, + [1169] = 1150, + [1170] = 1151, + [1171] = 1152, + [1172] = 1150, + [1173] = 1150, + [1174] = 1151, + [1175] = 1152, + [1176] = 1150, + [1177] = 1151, + [1178] = 1152, + [1179] = 1150, + [1180] = 1151, + [1181] = 1152, + [1182] = 1150, + [1183] = 1151, + [1184] = 1152, + [1185] = 1150, + [1186] = 1151, [1187] = 1187, - [1188] = 1174, - [1189] = 1176, - [1190] = 1190, - [1191] = 1190, - [1192] = 1190, - [1193] = 1190, - [1194] = 1190, - [1195] = 1187, - [1196] = 1187, + [1188] = 1152, + [1189] = 1150, + [1190] = 1151, + [1191] = 1152, + [1192] = 1192, + [1193] = 1150, + [1194] = 1151, + [1195] = 1152, + [1196] = 1196, [1197] = 1187, - [1198] = 1187, - [1199] = 1187, - [1200] = 1190, - [1201] = 1187, - [1202] = 1187, - [1203] = 1190, - [1204] = 1190, + [1198] = 1198, + [1199] = 1148, + [1200] = 1153, + [1201] = 1151, + [1202] = 1202, + [1203] = 1198, + [1204] = 1204, [1205] = 1187, - [1206] = 1187, - [1207] = 1190, - [1208] = 1190, - [1209] = 1170, + [1206] = 1198, + [1207] = 1148, + [1208] = 1208, + [1209] = 1204, [1210] = 1187, - [1211] = 1190, - [1212] = 1190, - [1213] = 1187, - [1214] = 362, - [1215] = 363, - [1216] = 364, - [1217] = 322, - [1218] = 365, - [1219] = 378, - [1220] = 322, - [1221] = 325, - [1222] = 342, - [1223] = 377, - [1224] = 292, - [1225] = 303, - [1226] = 1226, - [1227] = 295, - [1228] = 362, - [1229] = 334, - [1230] = 1230, - [1231] = 1231, - [1232] = 1231, - [1233] = 1231, - [1234] = 1231, - [1235] = 1231, - [1236] = 1231, - [1237] = 1231, - [1238] = 1231, - [1239] = 1231, - [1240] = 1231, - [1241] = 1231, - [1242] = 1231, - [1243] = 1243, - [1244] = 1244, - [1245] = 1244, - [1246] = 1244, - [1247] = 1244, - [1248] = 1244, - [1249] = 1244, - [1250] = 1244, - [1251] = 1244, - [1252] = 1244, - [1253] = 1244, - [1254] = 1244, - [1255] = 1244, - [1256] = 1256, - [1257] = 1244, + [1211] = 1198, + [1212] = 1212, + [1213] = 1148, + [1214] = 1214, + [1215] = 1215, + [1216] = 1204, + [1217] = 1187, + [1218] = 1198, + [1219] = 1148, + [1220] = 1204, + [1221] = 1187, + [1222] = 1198, + [1223] = 1223, + [1224] = 1224, + [1225] = 1204, + [1226] = 1187, + [1227] = 1198, + [1228] = 1148, + [1229] = 1149, + [1230] = 1204, + [1231] = 1187, + [1232] = 1198, + [1233] = 1148, + [1234] = 1234, + [1235] = 1204, + [1236] = 1187, + [1237] = 1198, + [1238] = 1148, + [1239] = 1239, + [1240] = 1204, + [1241] = 1187, + [1242] = 1198, + [1243] = 1148, + [1244] = 1204, + [1245] = 1187, + [1246] = 1198, + [1247] = 1148, + [1248] = 1248, + [1249] = 1204, + [1250] = 1187, + [1251] = 1198, + [1252] = 1148, + [1253] = 1204, + [1254] = 1187, + [1255] = 1198, + [1256] = 1148, + [1257] = 1204, [1258] = 1258, [1259] = 1259, - [1260] = 1259, - [1261] = 1259, + [1260] = 1154, + [1261] = 1261, [1262] = 1262, - [1263] = 1258, - [1264] = 1259, - [1265] = 1259, - [1266] = 1258, - [1267] = 1259, - [1268] = 1259, - [1269] = 1258, - [1270] = 1259, - [1271] = 1258, - [1272] = 1262, - [1273] = 1262, - [1274] = 1258, - [1275] = 1258, - [1276] = 1262, - [1277] = 1259, - [1278] = 1258, - [1279] = 1259, - [1280] = 1262, - [1281] = 1262, - [1282] = 1262, - [1283] = 1262, - [1284] = 1259, - [1285] = 1262, - [1286] = 1259, - [1287] = 1258, - [1288] = 1262, - [1289] = 1258, - [1290] = 1262, - [1291] = 1258, - [1292] = 1262, - [1293] = 1258, + [1263] = 1204, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1149, + [1269] = 1149, + [1270] = 1149, + [1271] = 1149, + [1272] = 1149, + [1273] = 1149, + [1274] = 1149, + [1275] = 1149, + [1276] = 1149, + [1277] = 1149, + [1278] = 1149, + [1279] = 1148, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 265, + [1286] = 266, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, [1294] = 1294, [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1297, - [1299] = 1297, + [1298] = 1298, + [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, @@ -2801,577 +2857,831 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1307] = 1307, [1308] = 1308, [1309] = 1309, - [1310] = 1305, + [1310] = 1310, [1311] = 1311, [1312] = 1312, [1313] = 1313, [1314] = 1314, [1315] = 1315, - [1316] = 1300, - [1317] = 1301, - [1318] = 1302, - [1319] = 1303, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 1309, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, - [1327] = 1296, - [1328] = 1297, - [1329] = 1320, - [1330] = 1295, - [1331] = 1306, - [1332] = 1306, - [1333] = 1307, - [1334] = 1308, - [1335] = 1309, - [1336] = 1305, - [1337] = 1311, - [1338] = 1312, - [1339] = 1313, - [1340] = 1314, - [1341] = 1315, - [1342] = 1300, - [1343] = 1301, - [1344] = 1302, - [1345] = 1303, - [1346] = 1320, - [1347] = 1321, - [1348] = 1322, + [1327] = 1324, + [1328] = 1324, + [1329] = 1324, + [1330] = 1283, + [1331] = 1326, + [1332] = 1326, + [1333] = 1324, + [1334] = 1324, + [1335] = 1326, + [1336] = 1336, + [1337] = 1326, + [1338] = 1326, + [1339] = 1326, + [1340] = 1324, + [1341] = 1324, + [1342] = 1326, + [1343] = 1343, + [1344] = 1324, + [1345] = 1281, + [1346] = 1326, + [1347] = 1326, + [1348] = 1324, [1349] = 1324, - [1350] = 1325, - [1351] = 1326, - [1352] = 1296, - [1353] = 1297, - [1354] = 1313, - [1355] = 1307, - [1356] = 1308, - [1357] = 1309, - [1358] = 1305, - [1359] = 1311, - [1360] = 1312, - [1361] = 1313, - [1362] = 1314, - [1363] = 1315, - [1364] = 1300, - [1365] = 1301, - [1366] = 1302, - [1367] = 1306, - [1368] = 1303, - [1369] = 1307, - [1370] = 1308, - [1371] = 1309, - [1372] = 1305, - [1373] = 1311, - [1374] = 1312, - [1375] = 1313, - [1376] = 1314, - [1377] = 1315, - [1378] = 1300, - [1379] = 1301, - [1380] = 1302, - [1381] = 1303, - [1382] = 1320, - [1383] = 1321, - [1384] = 1322, - [1385] = 1320, - [1386] = 1324, - [1387] = 1325, - [1388] = 1326, - [1389] = 1296, - [1390] = 1297, - [1391] = 1391, - [1392] = 1321, - [1393] = 1314, - [1394] = 1322, - [1395] = 1324, - [1396] = 1325, - [1397] = 1326, - [1398] = 1315, - [1399] = 1296, - [1400] = 1297, - [1401] = 1401, - [1402] = 1300, - [1403] = 1326, - [1404] = 1306, - [1405] = 1307, - [1406] = 1308, - [1407] = 1309, - [1408] = 1305, - [1409] = 1311, - [1410] = 1312, - [1411] = 1313, - [1412] = 1314, - [1413] = 1315, - [1414] = 1300, - [1415] = 1301, - [1416] = 1302, - [1417] = 1303, - [1418] = 1320, - [1419] = 1321, - [1420] = 1322, - [1421] = 1321, - [1422] = 1324, - [1423] = 1325, - [1424] = 1326, - [1425] = 1296, - [1426] = 1297, - [1427] = 1322, - [1428] = 1428, - [1429] = 1296, - [1430] = 1430, - [1431] = 1301, - [1432] = 1306, - [1433] = 1315, - [1434] = 1307, - [1435] = 1308, - [1436] = 1309, - [1437] = 1305, - [1438] = 1311, - [1439] = 1312, - [1440] = 1313, - [1441] = 1314, - [1442] = 1315, - [1443] = 1300, - [1444] = 1301, - [1445] = 1302, - [1446] = 1303, - [1447] = 1320, - [1448] = 1297, - [1449] = 1321, - [1450] = 1322, - [1451] = 1324, - [1452] = 1325, - [1453] = 1326, - [1454] = 1296, - [1455] = 1297, - [1456] = 1324, - [1457] = 1325, - [1458] = 1306, - [1459] = 1307, - [1460] = 1428, - [1461] = 1306, - [1462] = 1308, - [1463] = 1307, - [1464] = 1308, - [1465] = 1309, - [1466] = 1305, - [1467] = 1311, - [1468] = 1312, - [1469] = 1313, - [1470] = 1314, - [1471] = 1315, - [1472] = 1300, - [1473] = 1301, - [1474] = 1302, - [1475] = 1303, - [1476] = 1320, - [1477] = 1321, - [1478] = 1322, - [1479] = 1325, - [1480] = 1326, - [1481] = 1296, - [1482] = 1297, - [1483] = 1306, - [1484] = 1311, - [1485] = 1312, - [1486] = 1313, - [1487] = 1321, - [1488] = 1322, - [1489] = 1309, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1305, - [1494] = 1311, - [1495] = 1312, + [1350] = 1326, + [1351] = 1280, + [1352] = 1326, + [1353] = 1326, + [1354] = 1324, + [1355] = 1324, + [1356] = 1356, + [1357] = 298, + [1358] = 314, + [1359] = 314, + [1360] = 342, + [1361] = 316, + [1362] = 324, + [1363] = 300, + [1364] = 305, + [1365] = 1365, + [1366] = 289, + [1367] = 303, + [1368] = 1368, + [1369] = 289, + [1370] = 306, + [1371] = 340, + [1372] = 350, + [1373] = 309, + [1374] = 1374, + [1375] = 1374, + [1376] = 1374, + [1377] = 1374, + [1378] = 1374, + [1379] = 1374, + [1380] = 1374, + [1381] = 1374, + [1382] = 1374, + [1383] = 1374, + [1384] = 1374, + [1385] = 1374, + [1386] = 1374, + [1387] = 1387, + [1388] = 1388, + [1389] = 1387, + [1390] = 1387, + [1391] = 1387, + [1392] = 1387, + [1393] = 1387, + [1394] = 1394, + [1395] = 1387, + [1396] = 1387, + [1397] = 1387, + [1398] = 1387, + [1399] = 1387, + [1400] = 1387, + [1401] = 1387, + [1402] = 1387, + [1403] = 1403, + [1404] = 1404, + [1405] = 1403, + [1406] = 1404, + [1407] = 1403, + [1408] = 1404, + [1409] = 1409, + [1410] = 1409, + [1411] = 1404, + [1412] = 1403, + [1413] = 1409, + [1414] = 1409, + [1415] = 1403, + [1416] = 1403, + [1417] = 1409, + [1418] = 1403, + [1419] = 1409, + [1420] = 1403, + [1421] = 1409, + [1422] = 1404, + [1423] = 1404, + [1424] = 1403, + [1425] = 1404, + [1426] = 1403, + [1427] = 1404, + [1428] = 1409, + [1429] = 1409, + [1430] = 1403, + [1431] = 1409, + [1432] = 1404, + [1433] = 1404, + [1434] = 1403, + [1435] = 1403, + [1436] = 1404, + [1437] = 1409, + [1438] = 1409, + [1439] = 1409, + [1440] = 1404, + [1441] = 1404, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1444, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1445, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1446, + [1473] = 1447, + [1474] = 1448, + [1475] = 1444, + [1476] = 1450, + [1477] = 1451, + [1478] = 1452, + [1479] = 1453, + [1480] = 1454, + [1481] = 1455, + [1482] = 1456, + [1483] = 1457, + [1484] = 1458, + [1485] = 1459, + [1486] = 1460, + [1487] = 1461, + [1488] = 1462, + [1489] = 1466, + [1490] = 1463, + [1491] = 1464, + [1492] = 1465, + [1493] = 1466, + [1494] = 1445, + [1495] = 1495, [1496] = 1496, - [1497] = 1302, - [1498] = 1313, - [1499] = 1314, - [1500] = 1490, - [1501] = 1491, - [1502] = 1492, - [1503] = 1315, - [1504] = 1300, - [1505] = 1301, - [1506] = 1302, - [1507] = 1303, - [1508] = 1303, - [1509] = 1320, - [1510] = 1490, - [1511] = 1491, - [1512] = 1492, - [1513] = 1321, - [1514] = 1322, - [1515] = 1320, - [1516] = 1306, - [1517] = 1324, - [1518] = 1325, - [1519] = 1326, - [1520] = 1490, - [1521] = 1491, - [1522] = 1492, - [1523] = 1296, - [1524] = 1297, - [1525] = 1324, - [1526] = 1490, - [1527] = 1491, - [1528] = 1492, - [1529] = 1325, - [1530] = 1492, - [1531] = 1311, - [1532] = 1306, - [1533] = 1326, - [1534] = 1490, - [1535] = 1491, - [1536] = 1492, - [1537] = 1307, - [1538] = 1312, - [1539] = 1308, - [1540] = 1309, - [1541] = 1490, - [1542] = 1491, - [1543] = 1492, - [1544] = 1305, - [1545] = 1490, - [1546] = 1490, - [1547] = 1491, - [1548] = 1492, - [1549] = 1306, - [1550] = 1311, - [1551] = 1307, - [1552] = 1308, - [1553] = 1309, - [1554] = 1305, - [1555] = 1490, - [1556] = 1491, - [1557] = 1492, - [1558] = 1311, - [1559] = 1312, - [1560] = 1313, - [1561] = 1314, - [1562] = 1315, - [1563] = 1300, - [1564] = 1301, - [1565] = 1302, - [1566] = 1490, - [1567] = 1491, - [1568] = 1492, - [1569] = 1303, - [1570] = 1320, - [1571] = 1321, - [1572] = 1307, - [1573] = 1322, - [1574] = 1312, - [1575] = 1490, - [1576] = 1491, - [1577] = 1492, - [1578] = 1324, - [1579] = 1325, - [1580] = 1326, - [1581] = 1296, - [1582] = 1297, - [1583] = 1313, - [1584] = 1314, - [1585] = 1585, - [1586] = 1586, - [1587] = 1315, - [1588] = 1300, - [1589] = 1589, - [1590] = 1301, - [1591] = 1302, - [1592] = 1303, - [1593] = 1593, - [1594] = 1320, - [1595] = 1321, + [1497] = 1497, + [1498] = 1448, + [1499] = 1446, + [1500] = 1454, + [1501] = 1447, + [1502] = 1448, + [1503] = 1444, + [1504] = 1450, + [1505] = 1451, + [1506] = 1452, + [1507] = 1453, + [1508] = 1454, + [1509] = 1455, + [1510] = 1456, + [1511] = 1457, + [1512] = 1458, + [1513] = 1459, + [1514] = 1460, + [1515] = 1461, + [1516] = 1462, + [1517] = 1445, + [1518] = 1463, + [1519] = 1464, + [1520] = 1465, + [1521] = 1466, + [1522] = 1445, + [1523] = 1455, + [1524] = 1446, + [1525] = 1447, + [1526] = 1448, + [1527] = 1444, + [1528] = 1450, + [1529] = 1451, + [1530] = 1452, + [1531] = 1453, + [1532] = 1454, + [1533] = 1533, + [1534] = 1446, + [1535] = 1455, + [1536] = 1447, + [1537] = 1448, + [1538] = 1444, + [1539] = 1450, + [1540] = 1451, + [1541] = 1452, + [1542] = 1453, + [1543] = 1454, + [1544] = 1455, + [1545] = 1456, + [1546] = 1457, + [1547] = 1458, + [1548] = 1459, + [1549] = 1460, + [1550] = 1461, + [1551] = 1462, + [1552] = 1456, + [1553] = 1463, + [1554] = 1464, + [1555] = 1465, + [1556] = 1466, + [1557] = 1445, + [1558] = 1457, + [1559] = 1458, + [1560] = 1459, + [1561] = 1460, + [1562] = 1461, + [1563] = 1462, + [1564] = 1463, + [1565] = 1464, + [1566] = 1465, + [1567] = 1451, + [1568] = 1466, + [1569] = 1446, + [1570] = 1445, + [1571] = 1447, + [1572] = 1448, + [1573] = 1444, + [1574] = 1450, + [1575] = 1451, + [1576] = 1452, + [1577] = 1453, + [1578] = 1454, + [1579] = 1455, + [1580] = 1456, + [1581] = 1457, + [1582] = 1458, + [1583] = 1459, + [1584] = 1460, + [1585] = 1461, + [1586] = 1462, + [1587] = 1463, + [1588] = 1464, + [1589] = 1465, + [1590] = 1466, + [1591] = 1445, + [1592] = 1452, + [1593] = 1496, + [1594] = 1594, + [1595] = 1595, [1596] = 1596, - [1597] = 1322, - [1598] = 1296, - [1599] = 1324, - [1600] = 1306, - [1601] = 1325, - [1602] = 1307, - [1603] = 1308, - [1604] = 1308, - [1605] = 1309, - [1606] = 1606, - [1607] = 1305, - [1608] = 1311, - [1609] = 1609, - [1610] = 1491, - [1611] = 1321, - [1612] = 1313, - [1613] = 1613, - [1614] = 1322, - [1615] = 1312, - [1616] = 1313, - [1617] = 1314, - [1618] = 1315, - [1619] = 1300, - [1620] = 1301, - [1621] = 1302, - [1622] = 1303, - [1623] = 1320, - [1624] = 1326, - [1625] = 1321, - [1626] = 1322, - [1627] = 1296, - [1628] = 1324, - [1629] = 1325, - [1630] = 1306, - [1631] = 1326, - [1632] = 1307, - [1633] = 1308, - [1634] = 1309, - [1635] = 1305, - [1636] = 1311, - [1637] = 1312, - [1638] = 1314, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1154, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1647, - [1651] = 1647, - [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1644, - [1656] = 1647, - [1657] = 1647, - [1658] = 1658, - [1659] = 1647, - [1660] = 1647, - [1661] = 1661, - [1662] = 1647, - [1663] = 1647, - [1664] = 1664, - [1665] = 1645, - [1666] = 1647, - [1667] = 1647, - [1668] = 1647, - [1669] = 1669, - [1670] = 1670, - [1671] = 1157, - [1672] = 1672, - [1673] = 1673, - [1674] = 1670, - [1675] = 1670, - [1676] = 1676, - [1677] = 1670, - [1678] = 1678, - [1679] = 1670, - [1680] = 1680, - [1681] = 1670, - [1682] = 1682, - [1683] = 1669, - [1684] = 1684, - [1685] = 1160, - [1686] = 1686, - [1687] = 1670, - [1688] = 1670, - [1689] = 1689, - [1690] = 1690, - [1691] = 1162, - [1692] = 1670, - [1693] = 1693, - [1694] = 1670, - [1695] = 1670, - [1696] = 1696, - [1697] = 1670, - [1698] = 1698, - [1699] = 1670, - [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1704, - [1705] = 1704, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1708, - [1712] = 1712, - [1713] = 1702, + [1597] = 1446, + [1598] = 1447, + [1599] = 1448, + [1600] = 1444, + [1601] = 1450, + [1602] = 1451, + [1603] = 1452, + [1604] = 1453, + [1605] = 1454, + [1606] = 1455, + [1607] = 1456, + [1608] = 1457, + [1609] = 1458, + [1610] = 1459, + [1611] = 1460, + [1612] = 1612, + [1613] = 1461, + [1614] = 1462, + [1615] = 1463, + [1616] = 1464, + [1617] = 1465, + [1618] = 1466, + [1619] = 1445, + [1620] = 1620, + [1621] = 1444, + [1622] = 1470, + [1623] = 1446, + [1624] = 1624, + [1625] = 1446, + [1626] = 1447, + [1627] = 1447, + [1628] = 1448, + [1629] = 1444, + [1630] = 1450, + [1631] = 1451, + [1632] = 1452, + [1633] = 1453, + [1634] = 1454, + [1635] = 1455, + [1636] = 1456, + [1637] = 1457, + [1638] = 1458, + [1639] = 1459, + [1640] = 1460, + [1641] = 1448, + [1642] = 1461, + [1643] = 1462, + [1644] = 1444, + [1645] = 1463, + [1646] = 1464, + [1647] = 1465, + [1648] = 1466, + [1649] = 1445, + [1650] = 1450, + [1651] = 1451, + [1652] = 1452, + [1653] = 1453, + [1654] = 1454, + [1655] = 1455, + [1656] = 1456, + [1657] = 1657, + [1658] = 1457, + [1659] = 1458, + [1660] = 1660, + [1661] = 1459, + [1662] = 1446, + [1663] = 1460, + [1664] = 1447, + [1665] = 1448, + [1666] = 1444, + [1667] = 1450, + [1668] = 1451, + [1669] = 1452, + [1670] = 1453, + [1671] = 1454, + [1672] = 1455, + [1673] = 1456, + [1674] = 1457, + [1675] = 1458, + [1676] = 1459, + [1677] = 1460, + [1678] = 1461, + [1679] = 1462, + [1680] = 1464, + [1681] = 1465, + [1682] = 1466, + [1683] = 1445, + [1684] = 1446, + [1685] = 1451, + [1686] = 1452, + [1687] = 1453, + [1688] = 1461, + [1689] = 1462, + [1690] = 1620, + [1691] = 1691, + [1692] = 1692, + [1693] = 1461, + [1694] = 1462, + [1695] = 1463, + [1696] = 1464, + [1697] = 1465, + [1698] = 1466, + [1699] = 1445, + [1700] = 1456, + [1701] = 1620, + [1702] = 1691, + [1703] = 1692, + [1704] = 1450, + [1705] = 1620, + [1706] = 1691, + [1707] = 1692, + [1708] = 1465, + [1709] = 1457, + [1710] = 1446, + [1711] = 1620, + [1712] = 1691, + [1713] = 1692, [1714] = 1714, - [1715] = 1715, - [1716] = 1716, - [1717] = 1710, - [1718] = 1708, - [1719] = 1712, - [1720] = 1710, - [1721] = 1712, - [1722] = 1702, - [1723] = 1723, - [1724] = 1716, - [1725] = 1725, - [1726] = 1716, - [1727] = 1714, - [1728] = 1710, - [1729] = 1704, - [1730] = 1730, - [1731] = 1707, + [1715] = 1447, + [1716] = 1620, + [1717] = 1691, + [1718] = 1692, + [1719] = 1458, + [1720] = 1446, + [1721] = 1721, + [1722] = 1448, + [1723] = 1447, + [1724] = 1448, + [1725] = 1444, + [1726] = 1620, + [1727] = 1691, + [1728] = 1692, + [1729] = 1450, + [1730] = 1451, + [1731] = 1452, [1732] = 1732, - [1733] = 1733, - [1734] = 1702, - [1735] = 1704, - [1736] = 1708, - [1737] = 1704, - [1738] = 1738, - [1739] = 1708, - [1740] = 1714, - [1741] = 1741, - [1742] = 1708, - [1743] = 1714, - [1744] = 1744, - [1745] = 1710, - [1746] = 1712, - [1747] = 1747, - [1748] = 1714, - [1749] = 1702, - [1750] = 1707, - [1751] = 1751, - [1752] = 1708, - [1753] = 1712, - [1754] = 1754, - [1755] = 1707, - [1756] = 1716, - [1757] = 1757, - [1758] = 1716, - [1759] = 1704, - [1760] = 1760, - [1761] = 1716, - [1762] = 1716, - [1763] = 1763, - [1764] = 1764, - [1765] = 1704, - [1766] = 1704, - [1767] = 1767, - [1768] = 1712, - [1769] = 1714, - [1770] = 1708, - [1771] = 1707, - [1772] = 1772, - [1773] = 1707, - [1774] = 1710, - [1775] = 1704, - [1776] = 1712, - [1777] = 1710, - [1778] = 1702, - [1779] = 1779, - [1780] = 1708, - [1781] = 1781, + [1733] = 1453, + [1734] = 1454, + [1735] = 1455, + [1736] = 1620, + [1737] = 1691, + [1738] = 1692, + [1739] = 1456, + [1740] = 1457, + [1741] = 1458, + [1742] = 1742, + [1743] = 1459, + [1744] = 1460, + [1745] = 1620, + [1746] = 1691, + [1747] = 1692, + [1748] = 1461, + [1749] = 1462, + [1750] = 1463, + [1751] = 1464, + [1752] = 1465, + [1753] = 1466, + [1754] = 1620, + [1755] = 1691, + [1756] = 1692, + [1757] = 1445, + [1758] = 1450, + [1759] = 1451, + [1760] = 1469, + [1761] = 1452, + [1762] = 1453, + [1763] = 1620, + [1764] = 1691, + [1765] = 1692, + [1766] = 1454, + [1767] = 1455, + [1768] = 1456, + [1769] = 1620, + [1770] = 1691, + [1771] = 1692, + [1772] = 1457, + [1773] = 1773, + [1774] = 1458, + [1775] = 1775, + [1776] = 1776, + [1777] = 1459, + [1778] = 1620, + [1779] = 1691, + [1780] = 1692, + [1781] = 1459, [1782] = 1782, - [1783] = 1710, - [1784] = 1712, - [1785] = 1702, - [1786] = 1716, - [1787] = 1704, + [1783] = 1446, + [1784] = 1446, + [1785] = 1460, + [1786] = 1447, + [1787] = 1448, [1788] = 1788, - [1789] = 1712, + [1789] = 1444, [1790] = 1790, - [1791] = 1702, + [1791] = 1450, [1792] = 1792, - [1793] = 1793, - [1794] = 1707, - [1795] = 1710, - [1796] = 1712, - [1797] = 1707, + [1793] = 1451, + [1794] = 1461, + [1795] = 1452, + [1796] = 1453, + [1797] = 1454, [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1702, - [1802] = 1802, - [1803] = 1803, - [1804] = 1715, - [1805] = 1714, - [1806] = 1806, - [1807] = 1714, + [1799] = 1455, + [1800] = 1462, + [1801] = 1456, + [1802] = 1457, + [1803] = 1458, + [1804] = 1459, + [1805] = 1460, + [1806] = 1453, + [1807] = 1807, [1808] = 1808, - [1809] = 1708, - [1810] = 1810, - [1811] = 1811, - [1812] = 1714, - [1813] = 1712, - [1814] = 1710, - [1815] = 1815, - [1816] = 1798, - [1817] = 1817, - [1818] = 1702, - [1819] = 1701, - [1820] = 1820, - [1821] = 1716, - [1822] = 1811, + [1809] = 1461, + [1810] = 1462, + [1811] = 1461, + [1812] = 1691, + [1813] = 1463, + [1814] = 1464, + [1815] = 1465, + [1816] = 1463, + [1817] = 1464, + [1818] = 1466, + [1819] = 1445, + [1820] = 1462, + [1821] = 1463, + [1822] = 1692, [1823] = 1823, - [1824] = 1716, - [1825] = 1716, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1712, + [1824] = 1824, + [1825] = 1825, + [1826] = 1460, + [1827] = 1464, + [1828] = 1465, + [1829] = 1466, + [1830] = 1447, [1831] = 1831, - [1832] = 1707, - [1833] = 1707, - [1834] = 1806, - [1835] = 1707, - [1836] = 1704, - [1837] = 1837, - [1838] = 1751, - [1839] = 1708, - [1840] = 1714, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1834, + [1836] = 1836, + [1837] = 1287, + [1838] = 1834, + [1839] = 1839, + [1840] = 1834, [1841] = 1841, - [1842] = 1708, + [1842] = 1834, [1843] = 1843, - [1844] = 1704, - [1845] = 1710, - [1846] = 1802, - [1847] = 1712, - [1848] = 1706, - [1849] = 1702, - [1850] = 1714, - [1851] = 1702, - [1852] = 1707, + [1844] = 1844, + [1845] = 1832, + [1846] = 1834, + [1847] = 1834, + [1848] = 1834, + [1849] = 1844, + [1850] = 1850, + [1851] = 1851, + [1852] = 1834, [1853] = 1853, - [1854] = 1714, - [1855] = 1714, - [1856] = 1716, - [1857] = 1741, - [1858] = 1837, - [1859] = 1741, - [1860] = 1741, - [1861] = 1741, - [1862] = 1741, - [1863] = 1741, - [1864] = 1741, - [1865] = 1741, - [1866] = 1741, - [1867] = 1741, - [1868] = 1741, + [1854] = 1834, + [1855] = 1834, + [1856] = 1856, + [1857] = 1850, + [1858] = 1834, + [1859] = 1859, + [1860] = 1834, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1291, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1863, [1869] = 1869, - [1870] = 1701, - [1871] = 1701, - [1872] = 1701, - [1873] = 1701, - [1874] = 1701, - [1875] = 1701, - [1876] = 1701, - [1877] = 1701, - [1878] = 1701, - [1879] = 1701, - [1880] = 1710, + [1870] = 1870, + [1871] = 1871, + [1872] = 1863, + [1873] = 1873, + [1874] = 1863, + [1875] = 1297, + [1876] = 1863, + [1877] = 1863, + [1878] = 1863, + [1879] = 1863, + [1880] = 1880, + [1881] = 1881, + [1882] = 1863, + [1883] = 1294, + [1884] = 1884, + [1885] = 1865, + [1886] = 1880, + [1887] = 1863, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1871, + [1892] = 1863, + [1893] = 1893, + [1894] = 1890, + [1895] = 1895, + [1896] = 1884, + [1897] = 1897, + [1898] = 1863, + [1899] = 1889, + [1900] = 1873, + [1901] = 1863, + [1902] = 1902, + [1903] = 1863, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, + [1908] = 1905, + [1909] = 1909, + [1910] = 1907, + [1911] = 1909, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1915, + [1916] = 1914, + [1917] = 1914, + [1918] = 1905, + [1919] = 1907, + [1920] = 1920, + [1921] = 1921, + [1922] = 1909, + [1923] = 1914, + [1924] = 1924, + [1925] = 1925, + [1926] = 1909, + [1927] = 1927, + [1928] = 1915, + [1929] = 1929, + [1930] = 1930, + [1931] = 1905, + [1932] = 1932, + [1933] = 1920, + [1934] = 1907, + [1935] = 1935, + [1936] = 1936, + [1937] = 1909, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1915, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1920, + [1946] = 1914, + [1947] = 1947, + [1948] = 1935, + [1949] = 1920, + [1950] = 1915, + [1951] = 1951, + [1952] = 1939, + [1953] = 1953, + [1954] = 1915, + [1955] = 1905, + [1956] = 1956, + [1957] = 1920, + [1958] = 1907, + [1959] = 1909, + [1960] = 1914, + [1961] = 1961, + [1962] = 1962, + [1963] = 1935, + [1964] = 1964, + [1965] = 1935, + [1966] = 1966, + [1967] = 1915, + [1968] = 1905, + [1969] = 1939, + [1970] = 1907, + [1971] = 1971, + [1972] = 1920, + [1973] = 1920, + [1974] = 1909, + [1975] = 1914, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1915, + [1981] = 1939, + [1982] = 1907, + [1983] = 1915, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 1905, + [1988] = 1905, + [1989] = 1907, + [1990] = 1909, + [1991] = 1991, + [1992] = 1914, + [1993] = 1993, + [1994] = 1993, + [1995] = 1995, + [1996] = 1920, + [1997] = 1935, + [1998] = 1935, + [1999] = 1999, + [2000] = 1915, + [2001] = 2001, + [2002] = 1905, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 1935, + [2011] = 2011, + [2012] = 1909, + [2013] = 2013, + [2014] = 2014, + [2015] = 1907, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, + [2019] = 1907, + [2020] = 2020, + [2021] = 1939, + [2022] = 1909, + [2023] = 1914, + [2024] = 1935, + [2025] = 2025, + [2026] = 2026, + [2027] = 1939, + [2028] = 1914, + [2029] = 1939, + [2030] = 2030, + [2031] = 1915, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 1935, + [2038] = 1905, + [2039] = 1935, + [2040] = 2040, + [2041] = 1909, + [2042] = 1905, + [2043] = 2043, + [2044] = 1915, + [2045] = 1929, + [2046] = 2046, + [2047] = 1914, + [2048] = 2048, + [2049] = 1914, + [2050] = 1939, + [2051] = 2051, + [2052] = 2052, + [2053] = 2035, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 1907, + [2058] = 1920, + [2059] = 1920, + [2060] = 2060, + [2061] = 2061, + [2062] = 1935, + [2063] = 2063, + [2064] = 2064, + [2065] = 2065, + [2066] = 1909, + [2067] = 1939, + [2068] = 2068, + [2069] = 1915, + [2070] = 1939, + [2071] = 1991, + [2072] = 2072, + [2073] = 2014, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 1939, + [2078] = 2078, + [2079] = 2079, + [2080] = 1907, + [2081] = 1909, + [2082] = 2082, + [2083] = 2083, + [2084] = 1943, + [2085] = 1935, + [2086] = 2086, + [2087] = 2087, + [2088] = 1939, + [2089] = 1920, + [2090] = 1935, + [2091] = 1920, + [2092] = 1915, + [2093] = 2093, + [2094] = 2094, + [2095] = 1905, + [2096] = 1932, + [2097] = 1956, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 1907, + [2103] = 1939, + [2104] = 1915, + [2105] = 1909, + [2106] = 1914, + [2107] = 2107, + [2108] = 1920, + [2109] = 2063, + [2110] = 2052, + [2111] = 2063, + [2112] = 2063, + [2113] = 2063, + [2114] = 2063, + [2115] = 2063, + [2116] = 2063, + [2117] = 2063, + [2118] = 2063, + [2119] = 2063, + [2120] = 2063, + [2121] = 2063, + [2122] = 2093, + [2123] = 2093, + [2124] = 2093, + [2125] = 2093, + [2126] = 2093, + [2127] = 2093, + [2128] = 2093, + [2129] = 2093, + [2130] = 2093, + [2131] = 2093, + [2132] = 2093, + [2133] = 2093, + [2134] = 1905, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3379,5732 +3689,6208 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(353); + if (eof) ADVANCE(391); ADVANCE_MAP( - '"', 581, - '#', 516, - '\'', 574, - '(', 513, - ')', 514, - '*', 565, - '+', 556, - ',', 371, - '-', 553, - '.', 518, - '/', 552, - '1', 568, - ':', 359, - ';', 372, - '<', 561, - '=', 356, - '>', 562, - 'A', 148, - 'B', 72, - 'C', 36, - 'D', 108, - 'E', 138, - 'F', 37, - 'I', 95, - 'L', 208, - 'M', 183, - 'N', 180, - 'O', 96, - 'R', 74, - 'S', 122, - 'T', 19, - 'U', 124, - 'V', 40, - 'W', 58, - 'X', 186, - '[', 489, - ']', 490, - 'b', 348, - 'c', 291, - 'd', 298, - 'i', 313, - 'l', 334, - 'r', 285, - 's', 300, - 't', 299, - 'u', 301, - 'w', 274, - '{', 370, - '}', 373, + '"', 629, + '#', 564, + '\'', 622, + '(', 561, + ')', 562, + '*', 613, + '+', 604, + ',', 423, + '-', 601, + '.', 566, + '/', 600, + '1', 616, + ':', 398, + ';', 424, + '<', 609, + '=', 395, + '>', 610, + 'A', 166, + 'B', 84, + 'C', 38, + 'D', 39, + 'E', 154, + 'F', 40, + 'I', 110, + 'L', 233, + 'M', 202, + 'N', 199, + 'O', 111, + 'R', 86, + 'S', 136, + 'T', 20, + 'U', 138, + 'V', 44, + 'W', 66, + 'X', 207, + '[', 537, + ']', 538, + 'b', 386, + 'c', 329, + 'd', 336, + 'i', 351, + 'l', 372, + 'r', 323, + 's', 338, + 't', 337, + 'u', 339, + 'w', 312, + '{', 422, + '}', 425, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); END_STATE(); case 1: if (lookahead == '\n') SKIP(1); - if (lookahead == '\'') ADVANCE(574); - if (lookahead == '(') ADVANCE(577); - if (lookahead == '/') ADVANCE(578); + if (lookahead == '\'') ADVANCE(622); + if (lookahead == '(') ADVANCE(625); + if (lookahead == '/') ADVANCE(626); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(576); - if (lookahead != 0) ADVANCE(575); + lookahead == ' ') ADVANCE(624); + if (lookahead != 0) ADVANCE(623); END_STATE(); case 2: if (lookahead == '\n') SKIP(2); - if (lookahead == '"') ADVANCE(581); - if (lookahead == '(') ADVANCE(584); - if (lookahead == '/') ADVANCE(585); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '(') ADVANCE(632); + if (lookahead == '/') ADVANCE(633); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(583); - if (lookahead != 0) ADVANCE(582); + lookahead == ' ') ADVANCE(631); + if (lookahead != 0) ADVANCE(630); END_STATE(); case 3: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 513, - '+', 556, - '-', 553, - '/', 32, - '1', 568, - 'N', 777, - 'T', 587, + '"', 628, + '#', 564, + '\'', 621, + '(', 561, + '+', 604, + '-', 601, + '/', 34, + '1', 616, + 'N', 846, + 'T', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 4: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - ')', 514, - '-', 553, - '/', 552, - '}', 373, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + ')', 562, + '-', 601, + '/', 600, + '}', 425, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 5: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 852, - 'F', 761, - 'I', 656, - 'R', 635, - 'U', 751, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 929, + 'F', 828, + 'I', 717, + 'R', 695, + 'U', 817, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 6: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 706, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 770, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 7: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 738, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 802, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 8: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 713, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 778, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 9: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 739, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 803, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 10: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 740, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 804, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 11: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 741, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 806, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 12: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 735, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 808, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 13: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 743, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 801, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 14: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 737, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 810, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 15: ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 27, - '-', 553, - '/', 552, - ';', 372, - 'C', 588, - 'E', 759, - 'F', 761, - 'I', 656, - 'R', 635, - 'V', 590, - 'W', 668, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 799, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 16: ADVANCE_MAP( - '"', 580, - '\'', 573, - '(', 27, - '.', 31, - '/', 32, - ':', 358, - 'A', 796, - 'B', 767, - 'C', 669, - 'D', 687, - 'I', 745, - 'L', 799, - 'R', 651, - 'S', 688, - 'T', 676, - 'U', 690, - 'W', 620, - 'b', 950, - 'c', 895, - 'd', 901, - 'i', 915, - 'l', 936, - 'r', 889, - 's', 903, - 't', 902, - 'u', 904, - 'w', 878, - '{', 370, + '"', 628, + '#', 564, + '\'', 621, + '(', 29, + '-', 601, + '/', 600, + ';', 424, + 'C', 636, + 'E', 825, + 'F', 828, + 'I', 717, + 'R', 695, + 'V', 640, + 'W', 729, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (('E' <= lookahead && lookahead <= 'Z') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(580); - if (lookahead == '\'') ADVANCE(573); - if (lookahead == '(') ADVANCE(27); - if (lookahead == '/') ADVANCE(32); - if (lookahead == 'F') ADVANCE(596); - if (lookahead == 'T') ADVANCE(800); + ADVANCE_MAP( + '"', 628, + '\'', 621, + '(', 29, + '.', 33, + '/', 34, + ':', 397, + 'A', 867, + 'B', 835, + 'C', 730, + 'D', 748, + 'I', 807, + 'L', 870, + 'R', 710, + 'S', 749, + 'T', 736, + 'U', 751, + 'W', 677, + 'b', 1032, + 'c', 977, + 'd', 983, + 'i', 997, + 'l', 1018, + 'r', 971, + 's', 985, + 't', 984, + 'u', 986, + 'w', 960, + '{', 422, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('E' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(516); - if (lookahead == '(') ADVANCE(27); - if (lookahead == '/') ADVANCE(32); - if (lookahead == 'E') ADVANCE(714); + if (lookahead == '"') ADVANCE(628); + if (lookahead == '\'') ADVANCE(621); + if (lookahead == '(') ADVANCE(29); + if (lookahead == '/') ADVANCE(34); + if (lookahead == 'F') ADVANCE(646); + if (lookahead == 'T') ADVANCE(871); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(350); - if (lookahead == 'H') ADVANCE(88); - if (lookahead == 'I') ADVANCE(146); - if (lookahead == 'O') ADVANCE(534); - if (lookahead == 'R') ADVANCE(251); - if (lookahead == 'i') ADVANCE(308); - if (lookahead == 'o') ADVANCE(275); + if (lookahead == '#') ADVANCE(564); + if (lookahead == '(') ADVANCE(29); + if (lookahead == '/') ADVANCE(34); + if (lookahead == 'E') ADVANCE(779); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 20: ADVANCE_MAP( - '(', 513, - ')', 514, - '*', 565, - '+', 556, - ',', 371, - '-', 553, - '.', 517, - '/', 552, - ':', 359, - ';', 372, - '<', 561, - '=', 356, - '>', 562, - 'A', 147, - 'B', 257, - 'D', 179, - 'E', 170, - 'M', 183, - 'O', 96, - 'T', 105, - 'X', 186, - '[', 489, - ']', 490, + '#', 388, + 'H', 101, + 'I', 164, + 'O', 582, + 'R', 284, + 'Y', 220, + 'i', 346, + 'o', 313, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(20); END_STATE(); case 21: ADVANCE_MAP( - '(', 513, - ')', 514, - '*', 565, - '+', 556, - ',', 371, - '-', 553, - '.', 517, - '/', 552, - ':', 34, - ';', 372, - '<', 561, - '=', 356, - '>', 562, - 'A', 147, - 'B', 73, - 'D', 179, - 'E', 170, - 'M', 183, - 'O', 96, - 'T', 104, - 'V', 40, - 'X', 186, - '[', 489, - ']', 490, - '{', 370, - '}', 373, + '(', 561, + ')', 562, + '*', 613, + '+', 604, + ',', 423, + '-', 601, + '.', 565, + '/', 600, + ':', 398, + ';', 424, + '<', 609, + '=', 395, + '>', 610, + 'A', 165, + 'B', 292, + 'D', 198, + 'E', 187, + 'M', 202, + 'O', 111, + 'T', 120, + 'X', 207, + '[', 537, + ']', 538, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(27); - if (lookahead == '/') ADVANCE(32); - if (lookahead == ':') ADVANCE(358); - if (lookahead == 'B') ADVANCE(71); - if (lookahead == 'T') ADVANCE(119); - if (lookahead == 'V') ADVANCE(40); - if (lookahead == '{') ADVANCE(370); + ADVANCE_MAP( + '(', 561, + ')', 562, + '*', 613, + '+', 604, + ',', 423, + '-', 601, + '.', 565, + '/', 600, + ':', 36, + ';', 424, + '<', 609, + '=', 395, + '>', 610, + 'A', 165, + 'B', 85, + 'D', 198, + 'E', 187, + 'M', 202, + 'N', 218, + 'O', 111, + 'R', 107, + 'S', 278, + 'T', 119, + 'V', 44, + 'X', 207, + '[', 537, + ']', 538, + '{', 422, + '}', 425, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(27); - if (lookahead == '/') ADVANCE(32); - if (lookahead == 'C') ADVANCE(779); - if (lookahead == 'E') ADVANCE(744); - if (lookahead == 'N') ADVANCE(782); - if (lookahead == 'R') ADVANCE(654); + ADVANCE_MAP( + '(', 29, + '/', 34, + ':', 397, + 'B', 83, + 'N', 218, + 'R', 107, + 'S', 278, + 'T', 134, + 'V', 44, + '{', 422, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); END_STATE(); case 24: - if (lookahead == '(') ADVANCE(27); - if (lookahead == '/') ADVANCE(32); - if (lookahead == 'E') ADVANCE(744); + if (lookahead == '(') ADVANCE(29); + if (lookahead == '/') ADVANCE(34); + if (lookahead == 'C') ADVANCE(848); + if (lookahead == 'E') ADVANCE(812); + if (lookahead == 'N') ADVANCE(851); + if (lookahead == 'R') ADVANCE(715); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 25: - if (lookahead == ')') ADVANCE(953); - if (lookahead != 0) ADVANCE(28); + if (lookahead == '(') ADVANCE(29); + if (lookahead == '/') ADVANCE(34); + if (lookahead == 'E') ADVANCE(812); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(25); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 26: - if (lookahead == ')') ADVANCE(954); - if (lookahead == '*') ADVANCE(33); - if (lookahead != 0) ADVANCE(29); + if (lookahead == '(') ADVANCE(29); + if (lookahead == '/') ADVANCE(34); + if (lookahead == 'E') ADVANCE(814); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(26); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 27: - if (lookahead == '*') ADVANCE(28); - if (lookahead == '/') ADVANCE(30); + if (lookahead == ')') ADVANCE(1035); + if (lookahead != 0) ADVANCE(30); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(25); - if (lookahead != 0) ADVANCE(28); + if (lookahead == ')') ADVANCE(1036); + if (lookahead == '*') ADVANCE(35); + if (lookahead != 0) ADVANCE(31); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(33); - if (lookahead != 0) ADVANCE(29); + if (lookahead == '*') ADVANCE(30); + if (lookahead == '/') ADVANCE(32); END_STATE(); case 30: - if (lookahead == '*') ADVANCE(29); + if (lookahead == '*') ADVANCE(27); + if (lookahead != 0) ADVANCE(30); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(511); + if (lookahead == '*') ADVANCE(35); + if (lookahead != 0) ADVANCE(31); END_STATE(); case 32: - if (lookahead == '/') ADVANCE(952); + if (lookahead == '*') ADVANCE(31); END_STATE(); case 33: - if (lookahead == '/') ADVANCE(26); - if (lookahead != 0 && - lookahead != ')') ADVANCE(29); + if (lookahead == '.') ADVANCE(559); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(374); + if (lookahead == '/') ADVANCE(1034); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(515); + if (lookahead == '/') ADVANCE(28); + if (lookahead != 0 && + lookahead != ')') ADVANCE(31); END_STATE(); case 36: - if (lookahead == 'A') ADVANCE(220); - if (lookahead == 'H') ADVANCE(43); - if (lookahead == 'O') ADVANCE(149); - if (lookahead == 'h') ADVANCE(268); + if (lookahead == '=') ADVANCE(426); END_STATE(); case 37: - if (lookahead == 'A') ADVANCE(144); - if (lookahead == 'O') ADVANCE(201); - if (lookahead == 'U') ADVANCE(150); + if (lookahead == '>') ADVANCE(563); END_STATE(); case 38: - if (lookahead == 'A') ADVANCE(258); + if (lookahead == 'A') ADVANCE(246); + if (lookahead == 'H') ADVANCE(47); + if (lookahead == 'O') ADVANCE(167); + if (lookahead == 'h') ADVANCE(306); END_STATE(); case 39: - if (lookahead == 'A') ADVANCE(135); - if (lookahead == 'G') ADVANCE(112); - if (lookahead == 'P') ADVANCE(90); - if (lookahead == 'T') ADVANCE(42); + if (lookahead == 'A') ADVANCE(268); + if (lookahead == 'I') ADVANCE(186); + if (lookahead == 'O') ADVANCE(584); + if (lookahead == 'T') ADVANCE(525); + if (lookahead == 'W') ADVANCE(208); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 40: - if (lookahead == 'A') ADVANCE(202); - if (lookahead == 'E') ADVANCE(211); + if (lookahead == 'A') ADVANCE(162); + if (lookahead == 'O') ADVANCE(225); + if (lookahead == 'U') ADVANCE(168); END_STATE(); case 41: - if (lookahead == 'A') ADVANCE(136); + if (lookahead == 'A') ADVANCE(293); END_STATE(); case 42: - if (lookahead == 'A') ADVANCE(116); + if (lookahead == 'A') ADVANCE(151); + if (lookahead == 'G') ADVANCE(125); + if (lookahead == 'P') ADVANCE(103); + if (lookahead == 'T') ADVANCE(46); END_STATE(); case 43: - if (lookahead == 'A') ADVANCE(204); + if (lookahead == 'A') ADVANCE(297); END_STATE(); case 44: - if (lookahead == 'A') ADVANCE(232); + if (lookahead == 'A') ADVANCE(227); + if (lookahead == 'E') ADVANCE(236); END_STATE(); case 45: - if (lookahead == 'A') ADVANCE(174); + if (lookahead == 'A') ADVANCE(152); END_STATE(); case 46: - if (lookahead == 'A') ADVANCE(205); + if (lookahead == 'A') ADVANCE(130); END_STATE(); case 47: - if (lookahead == 'A') ADVANCE(236); + if (lookahead == 'A') ADVANCE(229); END_STATE(); case 48: - if (lookahead == 'A') ADVANCE(207); + if (lookahead == 'A') ADVANCE(258); END_STATE(); case 49: - if (lookahead == 'A') ADVANCE(173); + if (lookahead == 'A') ADVANCE(192); END_STATE(); case 50: - if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'A') ADVANCE(230); END_STATE(); case 51: - if (lookahead == 'A') ADVANCE(175); + if (lookahead == 'A') ADVANCE(262); END_STATE(); case 52: - if (lookahead == 'A') ADVANCE(223); + if (lookahead == 'A') ADVANCE(191); END_STATE(); case 53: - if (lookahead == 'A') ADVANCE(120); + if (lookahead == 'A') ADVANCE(232); END_STATE(); case 54: - if (lookahead == 'A') ADVANCE(121); + if (lookahead == 'A') ADVANCE(301); END_STATE(); case 55: - if (lookahead == 'A') ADVANCE(250); + if (lookahead == 'A') ADVANCE(193); END_STATE(); case 56: - if (lookahead == 'B') ADVANCE(139); + if (lookahead == 'A') ADVANCE(248); END_STATE(); case 57: - if (lookahead == 'B') ADVANCE(141); + if (lookahead == 'A') ADVANCE(132); END_STATE(); case 58: - if (lookahead == 'C') ADVANCE(106); - if (lookahead == 'H') ADVANCE(123); - if (lookahead == 'O') ADVANCE(212); - if (lookahead == 'S') ADVANCE(243); - if (lookahead == 'o') ADVANCE(327); + if (lookahead == 'A') ADVANCE(133); END_STATE(); case 59: - if (lookahead == 'C') ADVANCE(132); + if (lookahead == 'A') ADVANCE(135); END_STATE(); case 60: - if (lookahead == 'C') ADVANCE(133); + if (lookahead == 'A') ADVANCE(275); END_STATE(); case 61: - if (lookahead == 'C') ADVANCE(52); - if (lookahead == 'F') ADVANCE(190); - if (lookahead == 'I') ADVANCE(98); - if (lookahead == 'O') ADVANCE(210); - if (lookahead == 'R') ADVANCE(82); - if (lookahead == 'V') ADVANCE(48); - if (lookahead == 'W') ADVANCE(107); + if (lookahead == 'A') ADVANCE(283); END_STATE(); case 62: - if (lookahead == 'C') ADVANCE(247); + if (lookahead == 'B') ADVANCE(155); END_STATE(); case 63: - if (lookahead == 'C') ADVANCE(188); - if (lookahead == 'I') ADVANCE(155); - if (lookahead == 'N') ADVANCE(189); - if (lookahead == 'O') ADVANCE(252); - if (lookahead == 'R') ADVANCE(93); - if (lookahead == 'T') ADVANCE(83); + if (lookahead == 'B') ADVANCE(156); END_STATE(); case 64: - if (lookahead == 'C') ADVANCE(249); + if (lookahead == 'B') ADVANCE(158); END_STATE(); case 65: - if (lookahead == 'D') ADVANCE(559); + if (lookahead == 'B') ADVANCE(160); END_STATE(); case 66: - if (lookahead == 'D') ADVANCE(260); + if (lookahead == 'C') ADVANCE(121); + if (lookahead == 'H') ADVANCE(137); + if (lookahead == 'O') ADVANCE(238); + if (lookahead == 'S') ADVANCE(272); + if (lookahead == 'o') ADVANCE(365); END_STATE(); case 67: - if (lookahead == 'D') ADVANCE(566); + if (lookahead == 'C') ADVANCE(146); END_STATE(); case 68: - if (lookahead == 'D') ADVANCE(437); + if (lookahead == 'C') ADVANCE(147); END_STATE(); case 69: - if (lookahead == 'D') ADVANCE(443); + if (lookahead == 'C') ADVANCE(148); END_STATE(); case 70: - if (lookahead == 'D') ADVANCE(263); + if (lookahead == 'C') ADVANCE(149); END_STATE(); case 71: - if (lookahead == 'E') ADVANCE(101); + ADVANCE_MAP( + 'C', 56, + 'D', 60, + 'F', 212, + 'I', 113, + 'O', 235, + 'R', 95, + 'S', 273, + 'T', 294, + 'V', 53, + 'W', 122, + ); END_STATE(); case 72: - if (lookahead == 'E') ADVANCE(101); - if (lookahead == 'O') ADVANCE(181); - if (lookahead == 'Y') ADVANCE(535); - if (lookahead == 'o') ADVANCE(320); - if (lookahead == 'y') ADVANCE(345); + if (lookahead == 'C') ADVANCE(259); END_STATE(); case 73: - if (lookahead == 'E') ADVANCE(101); - if (lookahead == 'Y') ADVANCE(535); + if (lookahead == 'C') ADVANCE(263); END_STATE(); case 74: - if (lookahead == 'E') ADVANCE(39); - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'C') ADVANCE(279); END_STATE(); case 75: - if (lookahead == 'E') ADVANCE(528); + if (lookahead == 'C') ADVANCE(209); + if (lookahead == 'I') ADVANCE(173); + if (lookahead == 'N') ADVANCE(210); + if (lookahead == 'O') ADVANCE(285); + if (lookahead == 'R') ADVANCE(108); + if (lookahead == 'T') ADVANCE(96); END_STATE(); case 76: - if (lookahead == 'E') ADVANCE(526); - if (lookahead == 'I') ADVANCE(97); + if (lookahead == 'C') ADVANCE(282); END_STATE(); case 77: - if (lookahead == 'E') ADVANCE(466); + if (lookahead == 'D') ADVANCE(607); END_STATE(); case 78: - if (lookahead == 'E') ADVANCE(375); + if (lookahead == 'D') ADVANCE(296); END_STATE(); case 79: - if (lookahead == 'E') ADVANCE(377); + if (lookahead == 'D') ADVANCE(614); END_STATE(); case 80: - if (lookahead == 'E') ADVANCE(355); + if (lookahead == 'D') ADVANCE(485); END_STATE(); case 81: - if (lookahead == 'E') ADVANCE(539); + if (lookahead == 'D') ADVANCE(491); END_STATE(); case 82: - if (lookahead == 'E') ADVANCE(103); + if (lookahead == 'D') ADVANCE(300); END_STATE(); case 83: - if (lookahead == 'E') ADVANCE(145); + if (lookahead == 'E') ADVANCE(116); END_STATE(); case 84: - if (lookahead == 'E') ADVANCE(957); + if (lookahead == 'E') ADVANCE(116); + if (lookahead == 'O') ADVANCE(200); + if (lookahead == 'Y') ADVANCE(583); + if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'y') ADVANCE(383); END_STATE(); case 85: - if (lookahead == 'E') ADVANCE(530); + if (lookahead == 'E') ADVANCE(116); + if (lookahead == 'Y') ADVANCE(583); END_STATE(); case 86: - if (lookahead == 'E') ADVANCE(541); + if (lookahead == 'E') ADVANCE(42); + if (lookahead == 'e') ADVANCE(304); END_STATE(); case 87: - if (lookahead == 'E') ADVANCE(41); - if (lookahead == 'e') ADVANCE(269); + if (lookahead == 'E') ADVANCE(576); END_STATE(); case 88: - if (lookahead == 'E') ADVANCE(151); + if (lookahead == 'E') ADVANCE(574); + if (lookahead == 'I') ADVANCE(112); END_STATE(); case 89: - if (lookahead == 'E') ADVANCE(200); + if (lookahead == 'E') ADVANCE(514); END_STATE(); case 90: - if (lookahead == 'E') ADVANCE(44); + if (lookahead == 'E') ADVANCE(427); END_STATE(); case 91: - if (lookahead == 'E') ADVANCE(244); + if (lookahead == 'E') ADVANCE(392); END_STATE(); case 92: - if (lookahead == 'E') ADVANCE(47); + if (lookahead == 'E') ADVANCE(429); END_STATE(); case 93: - if (lookahead == 'E') ADVANCE(246); + if (lookahead == 'E') ADVANCE(394); END_STATE(); case 94: - if (lookahead == 'E') ADVANCE(248); + if (lookahead == 'E') ADVANCE(587); END_STATE(); case 95: - if (lookahead == 'F') ADVANCE(519); - if (lookahead == 'N') ADVANCE(226); - if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'E') ADVANCE(118); END_STATE(); case 96: - if (lookahead == 'F') ADVANCE(512); - if (lookahead == 'R') ADVANCE(557); + if (lookahead == 'E') ADVANCE(163); END_STATE(); case 97: - if (lookahead == 'F') ADVANCE(524); + if (lookahead == 'E') ADVANCE(1039); END_STATE(); case 98: - if (lookahead == 'F') ADVANCE(522); + if (lookahead == 'E') ADVANCE(578); END_STATE(); case 99: - if (lookahead == 'G') ADVANCE(485); + if (lookahead == 'E') ADVANCE(402); END_STATE(); case 100: - if (lookahead == 'G') ADVANCE(493); + if (lookahead == 'E') ADVANCE(589); END_STATE(); case 101: - if (lookahead == 'G') ADVANCE(110); + if (lookahead == 'E') ADVANCE(169); END_STATE(); case 102: - if (lookahead == 'G') ADVANCE(49); + if (lookahead == 'E') ADVANCE(45); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 103: - if (lookahead == 'G') ADVANCE(129); - if (lookahead == 'P') ADVANCE(92); + if (lookahead == 'E') ADVANCE(48); END_STATE(); case 104: - if (lookahead == 'H') ADVANCE(88); - if (lookahead == 'I') ADVANCE(240); - if (lookahead == 'O') ADVANCE(534); + if (lookahead == 'E') ADVANCE(51); END_STATE(); case 105: - if (lookahead == 'H') ADVANCE(88); - if (lookahead == 'O') ADVANCE(534); + if (lookahead == 'E') ADVANCE(276); END_STATE(); case 106: - if (lookahead == 'H') ADVANCE(46); - if (lookahead == 'h') ADVANCE(272); + if (lookahead == 'E') ADVANCE(224); END_STATE(); case 107: - if (lookahead == 'H') ADVANCE(125); + if (lookahead == 'E') ADVANCE(270); END_STATE(); case 108: - if (lookahead == 'I') ADVANCE(165); - if (lookahead == 'O') ADVANCE(536); - if (lookahead == 'T') ADVANCE(477); - if (lookahead == 'W') ADVANCE(187); - if (lookahead == 't') ADVANCE(479); + if (lookahead == 'E') ADVANCE(280); END_STATE(); case 109: - if (lookahead == 'I') ADVANCE(259); + if (lookahead == 'E') ADVANCE(281); END_STATE(); case 110: - if (lookahead == 'I') ADVANCE(152); + if (lookahead == 'F') ADVANCE(567); + if (lookahead == 'N') ADVANCE(252); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 111: - if (lookahead == 'I') ADVANCE(228); + if (lookahead == 'F') ADVANCE(560); + if (lookahead == 'R') ADVANCE(605); END_STATE(); case 112: - if (lookahead == 'I') ADVANCE(185); + if (lookahead == 'F') ADVANCE(572); END_STATE(); case 113: - if (lookahead == 'I') ADVANCE(163); + if (lookahead == 'F') ADVANCE(570); END_STATE(); case 114: - if (lookahead == 'I') ADVANCE(176); + if (lookahead == 'G') ADVANCE(533); END_STATE(); case 115: - if (lookahead == 'I') ADVANCE(137); + if (lookahead == 'G') ADVANCE(541); END_STATE(); case 116: - if (lookahead == 'I') ADVANCE(154); + if (lookahead == 'G') ADVANCE(124); END_STATE(); case 117: - if (lookahead == 'I') ADVANCE(167); + if (lookahead == 'G') ADVANCE(52); END_STATE(); case 118: - if (lookahead == 'I') ADVANCE(159); + if (lookahead == 'G') ADVANCE(143); + if (lookahead == 'P') ADVANCE(104); END_STATE(); case 119: - if (lookahead == 'I') ADVANCE(240); + if (lookahead == 'H') ADVANCE(101); + if (lookahead == 'I') ADVANCE(269); + if (lookahead == 'O') ADVANCE(582); END_STATE(); case 120: - if (lookahead == 'I') ADVANCE(160); + if (lookahead == 'H') ADVANCE(101); + if (lookahead == 'O') ADVANCE(582); END_STATE(); case 121: - if (lookahead == 'I') ADVANCE(162); + if (lookahead == 'H') ADVANCE(50); + if (lookahead == 'h') ADVANCE(310); END_STATE(); case 122: - if (lookahead == 'I') ADVANCE(169); - if (lookahead == 'T') ADVANCE(214); - if (lookahead == 't') ADVANCE(326); + if (lookahead == 'H') ADVANCE(139); END_STATE(); case 123: - if (lookahead == 'I') ADVANCE(142); + if (lookahead == 'I') ADVANCE(295); END_STATE(); case 124: - if (lookahead == 'I') ADVANCE(171); - if (lookahead == 'N') ADVANCE(242); - if (lookahead == 'S') ADVANCE(126); + if (lookahead == 'I') ADVANCE(170); END_STATE(); case 125: - if (lookahead == 'I') ADVANCE(143); + if (lookahead == 'I') ADVANCE(206); END_STATE(); case 126: - if (lookahead == 'I') ADVANCE(172); + if (lookahead == 'I') ADVANCE(181); + if (lookahead == 'U') ADVANCE(72); END_STATE(); case 127: - if (lookahead == 'I') ADVANCE(191); + if (lookahead == 'I') ADVANCE(254); END_STATE(); case 128: - if (lookahead == 'I') ADVANCE(192); - END_STATE(); - case 129: - if (lookahead == 'I') ADVANCE(193); - END_STATE(); - case 130: if (lookahead == 'I') ADVANCE(194); END_STATE(); + case 129: + if (lookahead == 'I') ADVANCE(153); + END_STATE(); + case 130: + if (lookahead == 'I') ADVANCE(172); + END_STATE(); case 131: - if (lookahead == 'I') ADVANCE(195); + if (lookahead == 'I') ADVANCE(184); END_STATE(); case 132: - if (lookahead == 'K') ADVANCE(363); + if (lookahead == 'I') ADVANCE(177); END_STATE(); case 133: - if (lookahead == 'K') ADVANCE(361); + if (lookahead == 'I') ADVANCE(178); END_STATE(); case 134: - if (lookahead == 'L') ADVANCE(403); + if (lookahead == 'I') ADVANCE(269); END_STATE(); case 135: - if (lookahead == 'L') ADVANCE(454); + if (lookahead == 'I') ADVANCE(180); END_STATE(); case 136: - if (lookahead == 'L') ADVANCE(460); + if (lookahead == 'I') ADVANCE(188); + if (lookahead == 'T') ADVANCE(226); + if (lookahead == 't') ADVANCE(364); END_STATE(); case 137: - if (lookahead == 'L') ADVANCE(545); + if (lookahead == 'I') ADVANCE(159); END_STATE(); case 138: - if (lookahead == 'L') ADVANCE(219); - if (lookahead == 'N') ADVANCE(66); - if (lookahead == 'X') ADVANCE(111); + if (lookahead == 'I') ADVANCE(189); + if (lookahead == 'N') ADVANCE(274); + if (lookahead == 'S') ADVANCE(140); END_STATE(); case 139: - if (lookahead == 'L') ADVANCE(182); + if (lookahead == 'I') ADVANCE(161); END_STATE(); case 140: - if (lookahead == 'L') ADVANCE(80); + if (lookahead == 'I') ADVANCE(190); END_STATE(); case 141: - if (lookahead == 'L') ADVANCE(184); + if (lookahead == 'I') ADVANCE(211); END_STATE(); case 142: - if (lookahead == 'L') ADVANCE(81); + if (lookahead == 'I') ADVANCE(213); END_STATE(); case 143: - if (lookahead == 'L') ADVANCE(86); + if (lookahead == 'I') ADVANCE(214); END_STATE(); case 144: - if (lookahead == 'L') ADVANCE(221); + if (lookahead == 'I') ADVANCE(215); END_STATE(); case 145: - if (lookahead == 'M') ADVANCE(197); + if (lookahead == 'I') ADVANCE(216); END_STATE(); case 146: - if (lookahead == 'M') ADVANCE(77); - if (lookahead == 'T') ADVANCE(140); + if (lookahead == 'K') ADVANCE(403); END_STATE(); case 147: - if (lookahead == 'N') ADVANCE(65); + if (lookahead == 'K') ADVANCE(410); END_STATE(); case 148: - if (lookahead == 'N') ADVANCE(65); - if (lookahead == 'R') ADVANCE(209); + if (lookahead == 'K') ADVANCE(415); END_STATE(); case 149: - if (lookahead == 'N') ADVANCE(222); + if (lookahead == 'K') ADVANCE(413); END_STATE(); case 150: - if (lookahead == 'N') ADVANCE(62); + if (lookahead == 'L') ADVANCE(451); END_STATE(); case 151: - if (lookahead == 'N') ADVANCE(521); + if (lookahead == 'L') ADVANCE(502); END_STATE(); case 152: - if (lookahead == 'N') ADVANCE(360); + if (lookahead == 'L') ADVANCE(508); END_STATE(); case 153: - if (lookahead == 'N') ADVANCE(548); + if (lookahead == 'L') ADVANCE(593); END_STATE(); case 154: - if (lookahead == 'N') ADVANCE(391); + if (lookahead == 'L') ADVANCE(245); + if (lookahead == 'N') ADVANCE(78); + if (lookahead == 'X') ADVANCE(127); END_STATE(); case 155: - if (lookahead == 'N') ADVANCE(198); + if (lookahead == 'L') ADVANCE(201); END_STATE(); case 156: - if (lookahead == 'N') ADVANCE(357); + if (lookahead == 'L') ADVANCE(203); END_STATE(); case 157: - if (lookahead == 'N') ADVANCE(366); + if (lookahead == 'L') ADVANCE(93); END_STATE(); case 158: - if (lookahead == 'N') ADVANCE(550); + if (lookahead == 'L') ADVANCE(204); END_STATE(); case 159: - if (lookahead == 'N') ADVANCE(393); + if (lookahead == 'L') ADVANCE(94); END_STATE(); case 160: - if (lookahead == 'N') ADVANCE(397); + if (lookahead == 'L') ADVANCE(205); END_STATE(); case 161: - if (lookahead == 'N') ADVANCE(368); + if (lookahead == 'L') ADVANCE(100); END_STATE(); case 162: - if (lookahead == 'N') ADVANCE(399); + if (lookahead == 'L') ADVANCE(247); END_STATE(); case 163: - if (lookahead == 'N') ADVANCE(99); + if (lookahead == 'M') ADVANCE(219); END_STATE(); case 164: - if (lookahead == 'N') ADVANCE(262); - if (lookahead == 'T') ADVANCE(554); + if (lookahead == 'M') ADVANCE(89); + if (lookahead == 'T') ADVANCE(157); END_STATE(); case 165: - if (lookahead == 'N') ADVANCE(227); - if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'N') ADVANCE(77); END_STATE(); case 166: - if (lookahead == 'N') ADVANCE(264); + if (lookahead == 'N') ADVANCE(77); + if (lookahead == 'R') ADVANCE(234); END_STATE(); case 167: - if (lookahead == 'N') ADVANCE(100); + if (lookahead == 'N') ADVANCE(249); END_STATE(); case 168: - if (lookahead == 'N') ADVANCE(225); + if (lookahead == 'N') ADVANCE(74); END_STATE(); case 169: - if (lookahead == 'N') ADVANCE(229); - if (lookahead == 'n') ADVANCE(338); + if (lookahead == 'N') ADVANCE(569); END_STATE(); case 170: - if (lookahead == 'N') ADVANCE(70); + if (lookahead == 'N') ADVANCE(409); END_STATE(); case 171: - if (lookahead == 'N') ADVANCE(230); - if (lookahead == 'n') ADVANCE(339); + if (lookahead == 'N') ADVANCE(596); END_STATE(); case 172: - if (lookahead == 'N') ADVANCE(231); - if (lookahead == 'n') ADVANCE(343); + if (lookahead == 'N') ADVANCE(407); END_STATE(); case 173: - if (lookahead == 'N') ADVANCE(109); + if (lookahead == 'N') ADVANCE(222); END_STATE(); case 174: - if (lookahead == 'N') ADVANCE(234); + if (lookahead == 'N') ADVANCE(396); END_STATE(); case 175: - if (lookahead == 'N') ADVANCE(239); + if (lookahead == 'N') ADVANCE(418); END_STATE(); case 176: - if (lookahead == 'N') ADVANCE(253); + if (lookahead == 'N') ADVANCE(598); END_STATE(); case 177: - if (lookahead == 'N') ADVANCE(64); + if (lookahead == 'N') ADVANCE(405); END_STATE(); case 178: - if (lookahead == 'N') ADVANCE(265); + if (lookahead == 'N') ADVANCE(445); END_STATE(); case 179: - if (lookahead == 'O') ADVANCE(536); + if (lookahead == 'N') ADVANCE(420); END_STATE(); case 180: - if (lookahead == 'O') ADVANCE(164); + if (lookahead == 'N') ADVANCE(447); END_STATE(); case 181: - if (lookahead == 'O') ADVANCE(134); + if (lookahead == 'N') ADVANCE(114); END_STATE(); case 182: - if (lookahead == 'O') ADVANCE(59); + if (lookahead == 'N') ADVANCE(299); END_STATE(); case 183: - if (lookahead == 'O') ADVANCE(67); + if (lookahead == 'N') ADVANCE(299); + if (lookahead == 'T') ADVANCE(602); END_STATE(); case 184: - if (lookahead == 'O') ADVANCE(60); + if (lookahead == 'N') ADVANCE(115); END_STATE(); case 185: - if (lookahead == 'O') ADVANCE(153); + if (lookahead == 'N') ADVANCE(251); END_STATE(); case 186: - if (lookahead == 'O') ADVANCE(203); + if (lookahead == 'N') ADVANCE(253); + if (lookahead == 'n') ADVANCE(375); END_STATE(); case 187: - if (lookahead == 'O') ADVANCE(213); - if (lookahead == 'o') ADVANCE(331); + if (lookahead == 'N') ADVANCE(82); END_STATE(); case 188: - if (lookahead == 'O') ADVANCE(168); + if (lookahead == 'N') ADVANCE(255); + if (lookahead == 'n') ADVANCE(376); END_STATE(); case 189: - if (lookahead == 'O') ADVANCE(178); + if (lookahead == 'N') ADVANCE(256); + if (lookahead == 'n') ADVANCE(377); END_STATE(); case 190: - if (lookahead == 'O') ADVANCE(206); - if (lookahead == 'U') ADVANCE(177); + if (lookahead == 'N') ADVANCE(257); + if (lookahead == 'n') ADVANCE(381); END_STATE(); case 191: - if (lookahead == 'O') ADVANCE(156); + if (lookahead == 'N') ADVANCE(123); END_STATE(); case 192: - if (lookahead == 'O') ADVANCE(157); + if (lookahead == 'N') ADVANCE(260); END_STATE(); case 193: - if (lookahead == 'O') ADVANCE(158); + if (lookahead == 'N') ADVANCE(266); END_STATE(); case 194: - if (lookahead == 'O') ADVANCE(161); + if (lookahead == 'N') ADVANCE(286); END_STATE(); case 195: - if (lookahead == 'O') ADVANCE(166); + if (lookahead == 'N') ADVANCE(302); END_STATE(); case 196: - if (lookahead == 'O') ADVANCE(255); + if (lookahead == 'N') ADVANCE(76); END_STATE(); case 197: - if (lookahead == 'P') ADVANCE(387); + if (lookahead == 'N') ADVANCE(303); END_STATE(); case 198: - if (lookahead == 'P') ADVANCE(254); - if (lookahead == '_') ADVANCE(196); + if (lookahead == 'O') ADVANCE(584); END_STATE(); case 199: - if (lookahead == 'P') ADVANCE(256); + if (lookahead == 'O') ADVANCE(183); END_STATE(); case 200: - if (lookahead == 'P') ADVANCE(92); + if (lookahead == 'O') ADVANCE(150); END_STATE(); case 201: - if (lookahead == 'R') ADVANCE(532); + if (lookahead == 'O') ADVANCE(67); END_STATE(); case 202: - if (lookahead == 'R') ADVANCE(385); + if (lookahead == 'O') ADVANCE(79); END_STATE(); case 203: - if (lookahead == 'R') ADVANCE(558); + if (lookahead == 'O') ADVANCE(68); END_STATE(); case 204: - if (lookahead == 'R') ADVANCE(499); + if (lookahead == 'O') ADVANCE(69); END_STATE(); case 205: - if (lookahead == 'R') ADVANCE(505); + if (lookahead == 'O') ADVANCE(70); END_STATE(); case 206: - if (lookahead == 'R') ADVANCE(537); + if (lookahead == 'O') ADVANCE(171); END_STATE(); case 207: - if (lookahead == 'R') ADVANCE(401); + if (lookahead == 'O') ADVANCE(228); END_STATE(); case 208: - if (lookahead == 'R') ADVANCE(87); + if (lookahead == 'O') ADVANCE(239); + if (lookahead == 'o') ADVANCE(369); END_STATE(); case 209: - if (lookahead == 'R') ADVANCE(38); + if (lookahead == 'O') ADVANCE(185); END_STATE(); case 210: - if (lookahead == 'R') ADVANCE(102); + if (lookahead == 'O') ADVANCE(197); END_STATE(); case 211: - if (lookahead == 'R') ADVANCE(224); + if (lookahead == 'O') ADVANCE(174); END_STATE(); case 212: - if (lookahead == 'R') ADVANCE(68); + if (lookahead == 'O') ADVANCE(231); + if (lookahead == 'U') ADVANCE(196); END_STATE(); case 213: - if (lookahead == 'R') ADVANCE(69); + if (lookahead == 'O') ADVANCE(175); END_STATE(); case 214: - if (lookahead == 'R') ADVANCE(113); + if (lookahead == 'O') ADVANCE(176); END_STATE(); case 215: - if (lookahead == 'R') ADVANCE(117); + if (lookahead == 'O') ADVANCE(179); END_STATE(); case 216: - if (lookahead == 'R') ADVANCE(91); + if (lookahead == 'O') ADVANCE(195); END_STATE(); case 217: - if (lookahead == 'R') ADVANCE(89); + if (lookahead == 'O') ADVANCE(288); END_STATE(); case 218: - if (lookahead == 'R') ADVANCE(94); + if (lookahead == 'O') ADVANCE(182); END_STATE(); case 219: - if (lookahead == 'S') ADVANCE(76); + if (lookahead == 'P') ADVANCE(439); END_STATE(); case 220: - if (lookahead == 'S') ADVANCE(75); + if (lookahead == 'P') ADVANCE(91); END_STATE(); case 221: - if (lookahead == 'S') ADVANCE(79); + if (lookahead == 'P') ADVANCE(99); END_STATE(); case 222: - if (lookahead == 'S') ADVANCE(241); - if (lookahead == 'T') ADVANCE(114); - END_STATE(); - case 223: - if (lookahead == 'S') ADVANCE(85); - END_STATE(); - case 224: - if (lookahead == 'S') ADVANCE(127); - END_STATE(); - case 225: - if (lookahead == 'S') ADVANCE(245); - END_STATE(); - case 226: - if (lookahead == 'T') ADVANCE(407); - END_STATE(); - case 227: - if (lookahead == 'T') ADVANCE(413); - END_STATE(); - case 228: - if (lookahead == 'T') ADVANCE(955); - END_STATE(); - case 229: - if (lookahead == 'T') ADVANCE(419); - END_STATE(); - case 230: - if (lookahead == 'T') ADVANCE(431); - END_STATE(); - case 231: - if (lookahead == 'T') ADVANCE(425); - END_STATE(); - case 232: - if (lookahead == 'T') ADVANCE(543); - END_STATE(); - case 233: - if (lookahead == 'T') ADVANCE(199); - END_STATE(); - case 234: - if (lookahead == 'T') ADVANCE(389); - END_STATE(); - case 235: - if (lookahead == 'T') ADVANCE(379); - END_STATE(); - case 236: - if (lookahead == 'T') ADVANCE(547); - END_STATE(); - case 237: - if (lookahead == 'T') ADVANCE(383); - END_STATE(); - case 238: - if (lookahead == 'T') ADVANCE(381); - END_STATE(); - case 239: - if (lookahead == 'T') ADVANCE(395); - END_STATE(); - case 240: - if (lookahead == 'T') ADVANCE(140); - END_STATE(); - case 241: - if (lookahead == 'T') ADVANCE(45); - END_STATE(); - case 242: - if (lookahead == 'T') ADVANCE(115); - END_STATE(); - case 243: - if (lookahead == 'T') ADVANCE(215); - if (lookahead == 't') ADVANCE(330); - END_STATE(); - case 244: - if (lookahead == 'T') ADVANCE(50); - END_STATE(); - case 245: - if (lookahead == 'T') ADVANCE(51); - END_STATE(); - case 246: - if (lookahead == 'T') ADVANCE(53); - END_STATE(); - case 247: - if (lookahead == 'T') ADVANCE(128); - END_STATE(); - case 248: - if (lookahead == 'T') ADVANCE(54); - END_STATE(); - case 249: - if (lookahead == 'T') ADVANCE(130); - END_STATE(); - case 250: - if (lookahead == 'T') ADVANCE(131); - END_STATE(); - case 251: - if (lookahead == 'U') ADVANCE(78); - END_STATE(); - case 252: - if (lookahead == 'U') ADVANCE(233); - END_STATE(); - case 253: - if (lookahead == 'U') ADVANCE(84); - END_STATE(); - case 254: - if (lookahead == 'U') ADVANCE(235); - END_STATE(); - case 255: - if (lookahead == 'U') ADVANCE(237); - END_STATE(); - case 256: - if (lookahead == 'U') ADVANCE(238); - END_STATE(); - case 257: - if (lookahead == 'Y') ADVANCE(535); - END_STATE(); - case 258: - if (lookahead == 'Y') ADVANCE(509); - END_STATE(); - case 259: - if (lookahead == 'Z') ADVANCE(55); - END_STATE(); - case 260: - if (lookahead == '_') ADVANCE(61); - END_STATE(); - case 261: - if (lookahead == '_') ADVANCE(350); - if (lookahead == 'm') ADVANCE(295); - if (lookahead == 'h' || - lookahead == 's') ADVANCE(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); - END_STATE(); - case 262: - if (lookahead == '_') ADVANCE(216); - END_STATE(); - case 263: + if (lookahead == 'P') ADVANCE(287); if (lookahead == '_') ADVANCE(217); END_STATE(); + case 223: + if (lookahead == 'P') ADVANCE(289); + END_STATE(); + case 224: + if (lookahead == 'P') ADVANCE(104); + END_STATE(); + case 225: + if (lookahead == 'R') ADVANCE(580); + END_STATE(); + case 226: + if (lookahead == 'R') ADVANCE(126); + END_STATE(); + case 227: + if (lookahead == 'R') ADVANCE(437); + END_STATE(); + case 228: + if (lookahead == 'R') ADVANCE(606); + END_STATE(); + case 229: + if (lookahead == 'R') ADVANCE(547); + END_STATE(); + case 230: + if (lookahead == 'R') ADVANCE(553); + END_STATE(); + case 231: + if (lookahead == 'R') ADVANCE(585); + END_STATE(); + case 232: + if (lookahead == 'R') ADVANCE(449); + END_STATE(); + case 233: + if (lookahead == 'R') ADVANCE(102); + END_STATE(); + case 234: + if (lookahead == 'R') ADVANCE(41); + END_STATE(); + case 235: + if (lookahead == 'R') ADVANCE(117); + END_STATE(); + case 236: + if (lookahead == 'R') ADVANCE(250); + END_STATE(); + case 237: + if (lookahead == 'R') ADVANCE(291); + END_STATE(); + case 238: + if (lookahead == 'R') ADVANCE(80); + END_STATE(); + case 239: + if (lookahead == 'R') ADVANCE(81); + END_STATE(); + case 240: + if (lookahead == 'R') ADVANCE(105); + END_STATE(); + case 241: + if (lookahead == 'R') ADVANCE(106); + END_STATE(); + case 242: + if (lookahead == 'R') ADVANCE(131); + END_STATE(); + case 243: + if (lookahead == 'R') ADVANCE(290); + END_STATE(); + case 244: + if (lookahead == 'R') ADVANCE(109); + END_STATE(); + case 245: + if (lookahead == 'S') ADVANCE(88); + END_STATE(); + case 246: + if (lookahead == 'S') ADVANCE(87); + END_STATE(); + case 247: + if (lookahead == 'S') ADVANCE(92); + END_STATE(); + case 248: + if (lookahead == 'S') ADVANCE(98); + END_STATE(); + case 249: + if (lookahead == 'S') ADVANCE(271); + if (lookahead == 'T') ADVANCE(128); + END_STATE(); + case 250: + if (lookahead == 'S') ADVANCE(141); + END_STATE(); + case 251: + if (lookahead == 'S') ADVANCE(277); + END_STATE(); + case 252: + if (lookahead == 'T') ADVANCE(455); + END_STATE(); + case 253: + if (lookahead == 'T') ADVANCE(461); + END_STATE(); + case 254: + if (lookahead == 'T') ADVANCE(1037); + END_STATE(); + case 255: + if (lookahead == 'T') ADVANCE(467); + END_STATE(); + case 256: + if (lookahead == 'T') ADVANCE(479); + END_STATE(); + case 257: + if (lookahead == 'T') ADVANCE(473); + END_STATE(); + case 258: + if (lookahead == 'T') ADVANCE(591); + END_STATE(); + case 259: + if (lookahead == 'T') ADVANCE(399); + END_STATE(); + case 260: + if (lookahead == 'T') ADVANCE(441); + END_STATE(); + case 261: + if (lookahead == 'T') ADVANCE(431); + END_STATE(); + case 262: + if (lookahead == 'T') ADVANCE(595); + END_STATE(); + case 263: + if (lookahead == 'T') ADVANCE(400); + END_STATE(); case 264: - if (lookahead == '_') ADVANCE(57); + if (lookahead == 'T') ADVANCE(435); END_STATE(); case 265: - if (lookahead == '_') ADVANCE(218); + if (lookahead == 'T') ADVANCE(433); END_STATE(); case 266: - if (lookahead == 'a') ADVANCE(304); + if (lookahead == 'T') ADVANCE(443); END_STATE(); case 267: - if (lookahead == 'a') ADVANCE(305); + if (lookahead == 'T') ADVANCE(223); END_STATE(); case 268: - if (lookahead == 'a') ADVANCE(322); + if (lookahead == 'T') ADVANCE(43); END_STATE(); case 269: - if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'T') ADVANCE(157); END_STATE(); case 270: - if (lookahead == 'a') ADVANCE(323); + if (lookahead == 'T') ADVANCE(46); END_STATE(); case 271: - if (lookahead == 'a') ADVANCE(307); + if (lookahead == 'T') ADVANCE(49); END_STATE(); case 272: - if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'T') ADVANCE(242); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 273: - if (lookahead == 'a') ADVANCE(325); + if (lookahead == 'T') ADVANCE(237); END_STATE(); case 274: - if (lookahead == 'c') ADVANCE(292); - if (lookahead == 'o') ADVANCE(329); - if (lookahead == 's') ADVANCE(347); + if (lookahead == 'T') ADVANCE(129); END_STATE(); case 275: - if (lookahead == 'd') ADVANCE(473); + if (lookahead == 'T') ADVANCE(54); END_STATE(); case 276: - if (lookahead == 'd') ADVANCE(475); + if (lookahead == 'T') ADVANCE(57); END_STATE(); case 277: - if (lookahead == 'd') ADVANCE(439); + if (lookahead == 'T') ADVANCE(55); END_STATE(); case 278: - if (lookahead == 'd') ADVANCE(441); + if (lookahead == 'T') ADVANCE(243); END_STATE(); case 279: - if (lookahead == 'd') ADVANCE(445); + if (lookahead == 'T') ADVANCE(142); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(447); + if (lookahead == 'T') ADVANCE(58); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(450); + if (lookahead == 'T') ADVANCE(59); END_STATE(); case 282: - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'T') ADVANCE(144); END_STATE(); case 283: - if (lookahead == 'e') ADVANCE(452); + if (lookahead == 'T') ADVANCE(145); END_STATE(); case 284: - if (lookahead == 'e') ADVANCE(470); + if (lookahead == 'U') ADVANCE(90); END_STATE(); case 285: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'U') ADVANCE(267); END_STATE(); case 286: - if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'U') ADVANCE(97); END_STATE(); case 287: - if (lookahead == 'g') ADVANCE(483); + if (lookahead == 'U') ADVANCE(261); END_STATE(); case 288: - if (lookahead == 'g') ADVANCE(487); + if (lookahead == 'U') ADVANCE(264); END_STATE(); case 289: - if (lookahead == 'g') ADVANCE(491); + if (lookahead == 'U') ADVANCE(265); END_STATE(); case 290: - if (lookahead == 'g') ADVANCE(495); + if (lookahead == 'U') ADVANCE(72); END_STATE(); case 291: - if (lookahead == 'h') ADVANCE(270); + if (lookahead == 'U') ADVANCE(73); END_STATE(); case 292: - if (lookahead == 'h') ADVANCE(273); + if (lookahead == 'Y') ADVANCE(583); END_STATE(); case 293: - if (lookahead == 'i') ADVANCE(311); + if (lookahead == 'Y') ADVANCE(557); END_STATE(); case 294: - if (lookahead == 'i') ADVANCE(312); + if (lookahead == 'Y') ADVANCE(221); END_STATE(); case 295: - if (lookahead == 'i') ADVANCE(310); - if (lookahead == 's') ADVANCE(572); + if (lookahead == 'Z') ADVANCE(61); END_STATE(); case 296: - if (lookahead == 'i') ADVANCE(314); + if (lookahead == '_') ADVANCE(71); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(315); + if (lookahead == '_') ADVANCE(62); END_STATE(); case 298: - if (lookahead == 'i') ADVANCE(316); - if (lookahead == 't') ADVANCE(481); - if (lookahead == 'w') ADVANCE(321); + if (lookahead == '_') ADVANCE(388); + if (lookahead == 'm') ADVANCE(333); + if (lookahead == 'h' || + lookahead == 's') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); END_STATE(); case 299: - if (lookahead == 'i') ADVANCE(309); - if (lookahead == 'o') ADVANCE(276); + if (lookahead == '_') ADVANCE(240); END_STATE(); case 300: - if (lookahead == 'i') ADVANCE(317); - if (lookahead == 't') ADVANCE(328); + if (lookahead == '_') ADVANCE(241); END_STATE(); case 301: - if (lookahead == 'i') ADVANCE(318); - if (lookahead == 's') ADVANCE(302); + if (lookahead == '_') ADVANCE(63); END_STATE(); case 302: - if (lookahead == 'i') ADVANCE(319); + if (lookahead == '_') ADVANCE(65); END_STATE(); case 303: - if (lookahead == 'l') ADVANCE(405); + if (lookahead == '_') ADVANCE(244); END_STATE(); case 304: - if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'a') ADVANCE(342); END_STATE(); case 305: - if (lookahead == 'l') ADVANCE(458); + if (lookahead == 'a') ADVANCE(343); END_STATE(); case 306: - if (lookahead == 'l') ADVANCE(462); + if (lookahead == 'a') ADVANCE(360); END_STATE(); case 307: - if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'a') ADVANCE(344); END_STATE(); case 308: - if (lookahead == 'm') ADVANCE(282); + if (lookahead == 'a') ADVANCE(361); END_STATE(); case 309: - if (lookahead == 'm') ADVANCE(284); + if (lookahead == 'a') ADVANCE(345); END_STATE(); case 310: - if (lookahead == 'n') ADVANCE(572); + if (lookahead == 'a') ADVANCE(362); END_STATE(); case 311: - if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'a') ADVANCE(363); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(288); + if (lookahead == 'c') ADVANCE(330); + if (lookahead == 'o') ADVANCE(367); + if (lookahead == 's') ADVANCE(385); END_STATE(); case 313: - if (lookahead == 'n') ADVANCE(336); + if (lookahead == 'd') ADVANCE(521); END_STATE(); case 314: - if (lookahead == 'n') ADVANCE(289); + if (lookahead == 'd') ADVANCE(523); END_STATE(); case 315: - if (lookahead == 'n') ADVANCE(290); + if (lookahead == 'd') ADVANCE(487); END_STATE(); case 316: - if (lookahead == 'n') ADVANCE(340); + if (lookahead == 'd') ADVANCE(489); END_STATE(); case 317: - if (lookahead == 'n') ADVANCE(341); + if (lookahead == 'd') ADVANCE(493); END_STATE(); case 318: - if (lookahead == 'n') ADVANCE(342); + if (lookahead == 'd') ADVANCE(495); END_STATE(); case 319: - if (lookahead == 'n') ADVANCE(344); + if (lookahead == 'e') ADVANCE(498); END_STATE(); case 320: - if (lookahead == 'o') ADVANCE(303); + if (lookahead == 'e') ADVANCE(516); END_STATE(); case 321: - if (lookahead == 'o') ADVANCE(332); + if (lookahead == 'e') ADVANCE(500); END_STATE(); case 322: - if (lookahead == 'r') ADVANCE(497); + if (lookahead == 'e') ADVANCE(518); END_STATE(); case 323: - if (lookahead == 'r') ADVANCE(501); + if (lookahead == 'e') ADVANCE(305); END_STATE(); case 324: - if (lookahead == 'r') ADVANCE(503); + if (lookahead == 'e') ADVANCE(309); END_STATE(); case 325: - if (lookahead == 'r') ADVANCE(507); + if (lookahead == 'g') ADVANCE(531); END_STATE(); case 326: - if (lookahead == 'r') ADVANCE(293); + if (lookahead == 'g') ADVANCE(535); END_STATE(); case 327: - if (lookahead == 'r') ADVANCE(277); + if (lookahead == 'g') ADVANCE(539); END_STATE(); case 328: - if (lookahead == 'r') ADVANCE(294); + if (lookahead == 'g') ADVANCE(543); END_STATE(); case 329: - if (lookahead == 'r') ADVANCE(278); + if (lookahead == 'h') ADVANCE(308); END_STATE(); case 330: - if (lookahead == 'r') ADVANCE(296); + if (lookahead == 'h') ADVANCE(311); END_STATE(); case 331: - if (lookahead == 'r') ADVANCE(279); + if (lookahead == 'i') ADVANCE(349); END_STATE(); case 332: - if (lookahead == 'r') ADVANCE(280); + if (lookahead == 'i') ADVANCE(350); END_STATE(); case 333: - if (lookahead == 'r') ADVANCE(297); + if (lookahead == 'i') ADVANCE(348); + if (lookahead == 's') ADVANCE(620); END_STATE(); case 334: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'i') ADVANCE(352); END_STATE(); case 335: - if (lookahead == 't') ADVANCE(409); + if (lookahead == 'i') ADVANCE(353); END_STATE(); case 336: - if (lookahead == 't') ADVANCE(411); + if (lookahead == 'i') ADVANCE(354); + if (lookahead == 't') ADVANCE(529); + if (lookahead == 'w') ADVANCE(359); END_STATE(); case 337: - if (lookahead == 't') ADVANCE(415); + if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'o') ADVANCE(314); END_STATE(); case 338: - if (lookahead == 't') ADVANCE(421); + if (lookahead == 'i') ADVANCE(355); + if (lookahead == 't') ADVANCE(366); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(433); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 's') ADVANCE(340); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(417); + if (lookahead == 'i') ADVANCE(357); END_STATE(); case 341: - if (lookahead == 't') ADVANCE(423); + if (lookahead == 'l') ADVANCE(453); END_STATE(); case 342: - if (lookahead == 't') ADVANCE(435); + if (lookahead == 'l') ADVANCE(504); END_STATE(); case 343: - if (lookahead == 't') ADVANCE(427); + if (lookahead == 'l') ADVANCE(506); END_STATE(); case 344: - if (lookahead == 't') ADVANCE(429); + if (lookahead == 'l') ADVANCE(510); END_STATE(); case 345: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 'l') ADVANCE(512); END_STATE(); case 346: - if (lookahead == 't') ADVANCE(283); + if (lookahead == 'm') ADVANCE(320); END_STATE(); case 347: - if (lookahead == 't') ADVANCE(333); + if (lookahead == 'm') ADVANCE(322); END_STATE(); case 348: - if (lookahead == 'y') ADVANCE(346); + if (lookahead == 'n') ADVANCE(620); END_STATE(); case 349: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(570); + if (lookahead == 'n') ADVANCE(325); END_STATE(); case 350: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (lookahead == 'n') ADVANCE(326); END_STATE(); case 351: + if (lookahead == 'n') ADVANCE(374); + END_STATE(); + case 352: + if (lookahead == 'n') ADVANCE(327); + END_STATE(); + case 353: + if (lookahead == 'n') ADVANCE(328); + END_STATE(); + case 354: + if (lookahead == 'n') ADVANCE(378); + END_STATE(); + case 355: + if (lookahead == 'n') ADVANCE(379); + END_STATE(); + case 356: + if (lookahead == 'n') ADVANCE(380); + END_STATE(); + case 357: + if (lookahead == 'n') ADVANCE(382); + END_STATE(); + case 358: + if (lookahead == 'o') ADVANCE(341); + END_STATE(); + case 359: + if (lookahead == 'o') ADVANCE(370); + END_STATE(); + case 360: + if (lookahead == 'r') ADVANCE(545); + END_STATE(); + case 361: + if (lookahead == 'r') ADVANCE(549); + END_STATE(); + case 362: + if (lookahead == 'r') ADVANCE(551); + END_STATE(); + case 363: + if (lookahead == 'r') ADVANCE(555); + END_STATE(); + case 364: + if (lookahead == 'r') ADVANCE(331); + END_STATE(); + case 365: + if (lookahead == 'r') ADVANCE(315); + END_STATE(); + case 366: + if (lookahead == 'r') ADVANCE(332); + END_STATE(); + case 367: + if (lookahead == 'r') ADVANCE(316); + END_STATE(); + case 368: + if (lookahead == 'r') ADVANCE(334); + END_STATE(); + case 369: + if (lookahead == 'r') ADVANCE(317); + END_STATE(); + case 370: + if (lookahead == 'r') ADVANCE(318); + END_STATE(); + case 371: + if (lookahead == 'r') ADVANCE(335); + END_STATE(); + case 372: + if (lookahead == 'r') ADVANCE(324); + END_STATE(); + case 373: + if (lookahead == 't') ADVANCE(457); + END_STATE(); + case 374: + if (lookahead == 't') ADVANCE(459); + END_STATE(); + case 375: + if (lookahead == 't') ADVANCE(463); + END_STATE(); + case 376: + if (lookahead == 't') ADVANCE(469); + END_STATE(); + case 377: + if (lookahead == 't') ADVANCE(481); + END_STATE(); + case 378: + if (lookahead == 't') ADVANCE(465); + END_STATE(); + case 379: + if (lookahead == 't') ADVANCE(471); + END_STATE(); + case 380: + if (lookahead == 't') ADVANCE(483); + END_STATE(); + case 381: + if (lookahead == 't') ADVANCE(475); + END_STATE(); + case 382: + if (lookahead == 't') ADVANCE(477); + END_STATE(); + case 383: + if (lookahead == 't') ADVANCE(319); + END_STATE(); + case 384: + if (lookahead == 't') ADVANCE(321); + END_STATE(); + case 385: + if (lookahead == 't') ADVANCE(371); + END_STATE(); + case 386: + if (lookahead == 'y') ADVANCE(384); + END_STATE(); + case 387: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(618); + END_STATE(); + case 388: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + END_STATE(); + case 389: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(619); END_STATE(); - case 352: - if (eof) ADVANCE(353); + case 390: + if (eof) ADVANCE(391); ADVANCE_MAP( - '"', 580, - '#', 516, - '\'', 573, - '(', 513, - '-', 553, - '.', 517, - '/', 552, - ':', 34, - ';', 372, - '=', 35, - 'C', 588, - 'E', 852, - 'F', 760, - 'I', 656, - 'O', 787, - 'R', 635, - 'V', 590, - 'W', 668, - '[', 489, + '"', 628, + '#', 564, + '\'', 621, + '(', 561, + '-', 601, + '.', 565, + '/', 600, + ':', 36, + ';', 424, + '=', 37, + 'C', 636, + 'D', 637, + 'E', 929, + 'F', 827, + 'I', 717, + 'O', 857, + 'R', 695, + 'T', 930, + 'V', 640, + 'W', 729, + '[', 537, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(352); + lookahead == ' ') SKIP(390); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 353: + case 391: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 354: + case 392: + ACCEPT_TOKEN(anon_sym_TYPE); + END_STATE(); + case 393: + ACCEPT_TOKEN(anon_sym_TYPE); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_TITLE); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(563); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_VERSION); + END_STATE(); + case 397: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(426); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_STRUCT); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_END_STRUCT); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym_END_STRUCT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_END_TYPE); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_DATA_BLOCK); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_DATA_BLOCK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_NON_RETAIN); + END_STATE(); + case 406: + ACCEPT_TOKEN(anon_sym_NON_RETAIN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_RETAIN); + END_STATE(); + case 408: + ACCEPT_TOKEN(anon_sym_RETAIN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 409: + ACCEPT_TOKEN(anon_sym_BEGIN); + END_STATE(); + case 410: + ACCEPT_TOKEN(anon_sym_END_DATA_BLOCK); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_END_DATA_BLOCK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 412: ACCEPT_TOKEN(anon_sym_ORGANIZATION_BLOCK); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_TITLE); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(515); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_VERSION); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(374); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_BEGIN); - END_STATE(); - case 361: + case 413: ACCEPT_TOKEN(anon_sym_END_ORGANIZATION_BLOCK); END_STATE(); - case 362: + case 414: ACCEPT_TOKEN(anon_sym_END_ORGANIZATION_BLOCK); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 363: + case 415: ACCEPT_TOKEN(anon_sym_FUNCTION_BLOCK); END_STATE(); - case 364: + case 416: ACCEPT_TOKEN(anon_sym_FUNCTION_BLOCK); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 365: + case 417: ACCEPT_TOKEN(anon_sym_END_FUNCTION_BLOCK); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_FUNCTION); - if (lookahead == '_') ADVANCE(56); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_FUNCTION); - if (lookahead == '_') ADVANCE(609); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_END_FUNCTION); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym_END_FUNCTION); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_TRUE); - END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_TRUE); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_FALSE); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_FALSE); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 379: - ACCEPT_TOKEN(anon_sym_VAR_INPUT); - END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_VAR_INPUT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_VAR_OUTPUT); - END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_VAR_OUTPUT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_VAR_IN_OUT); - END_STATE(); - case 384: - ACCEPT_TOKEN(anon_sym_VAR_IN_OUT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym_VAR); - if (lookahead == '_') ADVANCE(63); - END_STATE(); - case 386: - ACCEPT_TOKEN(anon_sym_VAR); - if (lookahead == '_') ADVANCE(619); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_VAR_TEMP); - END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym_VAR_TEMP); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 389: - ACCEPT_TOKEN(anon_sym_CONSTANT); - END_STATE(); - case 390: - ACCEPT_TOKEN(anon_sym_CONSTANT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 391: - ACCEPT_TOKEN(anon_sym_RETAIN); - END_STATE(); - case 392: - ACCEPT_TOKEN(anon_sym_RETAIN); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 393: - ACCEPT_TOKEN(anon_sym_NON_RETAIN); - END_STATE(); - case 394: - ACCEPT_TOKEN(anon_sym_NON_RETAIN); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 395: - ACCEPT_TOKEN(anon_sym_VAR_CONSTANT); - END_STATE(); - case 396: - ACCEPT_TOKEN(anon_sym_VAR_CONSTANT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 397: - ACCEPT_TOKEN(anon_sym_VAR_RETAIN); - END_STATE(); - case 398: - ACCEPT_TOKEN(anon_sym_VAR_RETAIN); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 399: - ACCEPT_TOKEN(anon_sym_VAR_NON_RETAIN); - END_STATE(); - case 400: - ACCEPT_TOKEN(anon_sym_VAR_NON_RETAIN); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 401: - ACCEPT_TOKEN(anon_sym_END_VAR); - END_STATE(); - case 402: - ACCEPT_TOKEN(anon_sym_END_VAR); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 403: - ACCEPT_TOKEN(anon_sym_BOOL); - END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym_BOOL); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 405: - ACCEPT_TOKEN(anon_sym_Bool); - END_STATE(); - case 406: - ACCEPT_TOKEN(anon_sym_Bool); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 407: - ACCEPT_TOKEN(anon_sym_INT); - END_STATE(); - case 408: - ACCEPT_TOKEN(anon_sym_INT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 409: - ACCEPT_TOKEN(anon_sym_Int); - END_STATE(); - case 410: - ACCEPT_TOKEN(anon_sym_Int); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 411: - ACCEPT_TOKEN(anon_sym_int); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym_int); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym_DINT); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym_DINT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_DInt); - END_STATE(); - case 416: - ACCEPT_TOKEN(anon_sym_DInt); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 417: - ACCEPT_TOKEN(anon_sym_dint); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 418: + ACCEPT_TOKEN(anon_sym_FUNCTION); + if (lookahead == '_') ADVANCE(64); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_FUNCTION); + if (lookahead == '_') ADVANCE(662); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 420: + ACCEPT_TOKEN(anon_sym_END_FUNCTION); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_END_FUNCTION); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 426: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_TRUE); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_TRUE); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 429: + ACCEPT_TOKEN(anon_sym_FALSE); + END_STATE(); + case 430: + ACCEPT_TOKEN(anon_sym_FALSE); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_VAR_INPUT); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_VAR_INPUT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_VAR_OUTPUT); + END_STATE(); + case 434: + ACCEPT_TOKEN(anon_sym_VAR_OUTPUT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 435: + ACCEPT_TOKEN(anon_sym_VAR_IN_OUT); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_VAR_IN_OUT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_VAR); + if (lookahead == '_') ADVANCE(75); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_VAR); + if (lookahead == '_') ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_VAR_TEMP); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_VAR_TEMP); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_CONSTANT); + END_STATE(); + case 442: + ACCEPT_TOKEN(anon_sym_CONSTANT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 443: + ACCEPT_TOKEN(anon_sym_VAR_CONSTANT); + END_STATE(); + case 444: + ACCEPT_TOKEN(anon_sym_VAR_CONSTANT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_VAR_RETAIN); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym_VAR_RETAIN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 447: + ACCEPT_TOKEN(anon_sym_VAR_NON_RETAIN); + END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym_VAR_NON_RETAIN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym_END_VAR); + END_STATE(); + case 450: + ACCEPT_TOKEN(anon_sym_END_VAR); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym_BOOL); + END_STATE(); + case 452: + ACCEPT_TOKEN(anon_sym_BOOL); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 453: + ACCEPT_TOKEN(anon_sym_Bool); + END_STATE(); + case 454: + ACCEPT_TOKEN(anon_sym_Bool); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 455: + ACCEPT_TOKEN(anon_sym_INT); + END_STATE(); + case 456: + ACCEPT_TOKEN(anon_sym_INT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 457: + ACCEPT_TOKEN(anon_sym_Int); + END_STATE(); + case 458: + ACCEPT_TOKEN(anon_sym_Int); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym_int); + END_STATE(); + case 460: + ACCEPT_TOKEN(anon_sym_int); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 461: + ACCEPT_TOKEN(anon_sym_DINT); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_DINT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 463: + ACCEPT_TOKEN(anon_sym_DInt); + END_STATE(); + case 464: + ACCEPT_TOKEN(anon_sym_DInt); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 465: + ACCEPT_TOKEN(anon_sym_dint); + END_STATE(); + case 466: ACCEPT_TOKEN(anon_sym_dint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 419: + case 467: ACCEPT_TOKEN(anon_sym_SINT); END_STATE(); - case 420: + case 468: ACCEPT_TOKEN(anon_sym_SINT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 421: + case 469: ACCEPT_TOKEN(anon_sym_SInt); END_STATE(); - case 422: + case 470: ACCEPT_TOKEN(anon_sym_SInt); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 423: + case 471: ACCEPT_TOKEN(anon_sym_sint); END_STATE(); - case 424: + case 472: ACCEPT_TOKEN(anon_sym_sint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 425: + case 473: ACCEPT_TOKEN(anon_sym_USINT); END_STATE(); - case 426: + case 474: ACCEPT_TOKEN(anon_sym_USINT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 427: + case 475: ACCEPT_TOKEN(anon_sym_USInt); END_STATE(); - case 428: + case 476: ACCEPT_TOKEN(anon_sym_USInt); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 429: + case 477: ACCEPT_TOKEN(anon_sym_usint); END_STATE(); - case 430: + case 478: ACCEPT_TOKEN(anon_sym_usint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 431: + case 479: ACCEPT_TOKEN(anon_sym_UINT); END_STATE(); - case 432: + case 480: ACCEPT_TOKEN(anon_sym_UINT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 433: + case 481: ACCEPT_TOKEN(anon_sym_UInt); END_STATE(); - case 434: + case 482: ACCEPT_TOKEN(anon_sym_UInt); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 435: + case 483: ACCEPT_TOKEN(anon_sym_uint); END_STATE(); - case 436: + case 484: ACCEPT_TOKEN(anon_sym_uint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 437: + case 485: ACCEPT_TOKEN(anon_sym_WORD); END_STATE(); - case 438: + case 486: ACCEPT_TOKEN(anon_sym_WORD); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 439: + case 487: ACCEPT_TOKEN(anon_sym_Word); END_STATE(); - case 440: + case 488: ACCEPT_TOKEN(anon_sym_Word); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 441: + case 489: ACCEPT_TOKEN(anon_sym_word); END_STATE(); - case 442: + case 490: ACCEPT_TOKEN(anon_sym_word); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 443: + case 491: ACCEPT_TOKEN(anon_sym_DWORD); END_STATE(); - case 444: + case 492: ACCEPT_TOKEN(anon_sym_DWORD); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 445: + case 493: ACCEPT_TOKEN(anon_sym_DWord); END_STATE(); - case 446: + case 494: ACCEPT_TOKEN(anon_sym_DWord); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 447: + case 495: ACCEPT_TOKEN(anon_sym_dword); END_STATE(); - case 448: + case 496: ACCEPT_TOKEN(anon_sym_dword); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 449: + case 497: ACCEPT_TOKEN(anon_sym_BYTE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 450: + case 498: ACCEPT_TOKEN(anon_sym_Byte); END_STATE(); - case 451: + case 499: ACCEPT_TOKEN(anon_sym_Byte); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 452: + case 500: ACCEPT_TOKEN(anon_sym_byte); END_STATE(); - case 453: + case 501: ACCEPT_TOKEN(anon_sym_byte); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 454: + case 502: ACCEPT_TOKEN(anon_sym_REAL); END_STATE(); - case 455: + case 503: ACCEPT_TOKEN(anon_sym_REAL); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 456: + case 504: ACCEPT_TOKEN(anon_sym_Real); END_STATE(); - case 457: + case 505: ACCEPT_TOKEN(anon_sym_Real); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 458: + case 506: ACCEPT_TOKEN(anon_sym_real); END_STATE(); - case 459: + case 507: ACCEPT_TOKEN(anon_sym_real); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 460: + case 508: ACCEPT_TOKEN(anon_sym_LREAL); END_STATE(); - case 461: + case 509: ACCEPT_TOKEN(anon_sym_LREAL); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 462: + case 510: ACCEPT_TOKEN(anon_sym_LReal); END_STATE(); - case 463: + case 511: ACCEPT_TOKEN(anon_sym_LReal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 464: + case 512: ACCEPT_TOKEN(anon_sym_lreal); END_STATE(); - case 465: + case 513: ACCEPT_TOKEN(anon_sym_lreal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 466: + case 514: ACCEPT_TOKEN(anon_sym_TIME); END_STATE(); - case 467: + case 515: ACCEPT_TOKEN(anon_sym_TIME); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 468: + case 516: ACCEPT_TOKEN(anon_sym_Time); END_STATE(); - case 469: + case 517: ACCEPT_TOKEN(anon_sym_Time); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 470: + case 518: ACCEPT_TOKEN(anon_sym_time); END_STATE(); - case 471: + case 519: ACCEPT_TOKEN(anon_sym_time); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 472: + case 520: ACCEPT_TOKEN(anon_sym_TOD); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_Tod); - END_STATE(); - case 474: - ACCEPT_TOKEN(anon_sym_Tod); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_tod); - END_STATE(); - case 476: - ACCEPT_TOKEN(anon_sym_tod); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_DT); - END_STATE(); - case 478: - ACCEPT_TOKEN(anon_sym_DT); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_Dt); - END_STATE(); - case 480: - ACCEPT_TOKEN(anon_sym_Dt); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 481: - ACCEPT_TOKEN(anon_sym_dt); - END_STATE(); - case 482: - ACCEPT_TOKEN(anon_sym_dt); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 483: - ACCEPT_TOKEN(anon_sym_String); - END_STATE(); - case 484: - ACCEPT_TOKEN(anon_sym_String); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 485: - ACCEPT_TOKEN(anon_sym_STRING); - END_STATE(); - case 486: - ACCEPT_TOKEN(anon_sym_STRING); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 487: - ACCEPT_TOKEN(anon_sym_string); - END_STATE(); - case 488: - ACCEPT_TOKEN(anon_sym_string); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 489: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 490: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 491: - ACCEPT_TOKEN(anon_sym_WString); - END_STATE(); - case 492: - ACCEPT_TOKEN(anon_sym_WString); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 493: - ACCEPT_TOKEN(anon_sym_WSTRING); - END_STATE(); - case 494: - ACCEPT_TOKEN(anon_sym_WSTRING); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 495: - ACCEPT_TOKEN(anon_sym_wstring); - END_STATE(); - case 496: - ACCEPT_TOKEN(anon_sym_wstring); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 497: - ACCEPT_TOKEN(anon_sym_Char); - END_STATE(); - case 498: - ACCEPT_TOKEN(anon_sym_Char); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 499: - ACCEPT_TOKEN(anon_sym_CHAR); - END_STATE(); - case 500: - ACCEPT_TOKEN(anon_sym_CHAR); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 501: - ACCEPT_TOKEN(anon_sym_char); - END_STATE(); - case 502: - ACCEPT_TOKEN(anon_sym_char); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 503: - ACCEPT_TOKEN(anon_sym_WChar); - END_STATE(); - case 504: - ACCEPT_TOKEN(anon_sym_WChar); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 505: - ACCEPT_TOKEN(anon_sym_WCHAR); - END_STATE(); - case 506: - ACCEPT_TOKEN(anon_sym_WCHAR); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 507: - ACCEPT_TOKEN(anon_sym_wchar); - END_STATE(); - case 508: - ACCEPT_TOKEN(anon_sym_wchar); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 509: - ACCEPT_TOKEN(anon_sym_ARRAY); - END_STATE(); - case 510: - ACCEPT_TOKEN(anon_sym_ARRAY); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 511: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 512: - ACCEPT_TOKEN(anon_sym_OF); - END_STATE(); - case 513: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '*') ADVANCE(28); - if (lookahead == '/') ADVANCE(30); - END_STATE(); - case 514: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 515: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 516: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 517: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 518: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(511); - END_STATE(); - case 519: - ACCEPT_TOKEN(anon_sym_IF); - END_STATE(); - case 520: - ACCEPT_TOKEN(anon_sym_IF); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_THEN); + ACCEPT_TOKEN(anon_sym_Tod); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_END_IF); + ACCEPT_TOKEN(anon_sym_Tod); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 523: + ACCEPT_TOKEN(anon_sym_tod); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_tod); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_DT); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_DT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym_Dt); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_Dt); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_dt); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_dt); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_String); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_String); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_STRING); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_STRING); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_string); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_WString); + END_STATE(); + case 540: + ACCEPT_TOKEN(anon_sym_WString); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 541: + ACCEPT_TOKEN(anon_sym_WSTRING); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_WSTRING); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_wstring); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_wstring); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_Char); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_Char); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_CHAR); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_CHAR); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_char); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_char); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_WChar); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_WChar); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_WCHAR); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_WCHAR); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_wchar); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_wchar); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 557: + ACCEPT_TOKEN(anon_sym_ARRAY); + END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_ARRAY); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_OF); + END_STATE(); + case 561: + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '*') ADVANCE(30); + if (lookahead == '/') ADVANCE(32); + END_STATE(); + case 562: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 563: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 565: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(559); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_IF); + END_STATE(); + case 568: + ACCEPT_TOKEN(anon_sym_IF); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_THEN); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_END_IF); + END_STATE(); + case 571: ACCEPT_TOKEN(anon_sym_END_IF); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 524: + case 572: ACCEPT_TOKEN(anon_sym_ELSIF); END_STATE(); - case 525: + case 573: ACCEPT_TOKEN(anon_sym_ELSIF); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 526: + case 574: ACCEPT_TOKEN(anon_sym_ELSE); END_STATE(); - case 527: + case 575: ACCEPT_TOKEN(anon_sym_ELSE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 528: + case 576: ACCEPT_TOKEN(anon_sym_CASE); END_STATE(); - case 529: + case 577: ACCEPT_TOKEN(anon_sym_CASE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 530: + case 578: ACCEPT_TOKEN(anon_sym_END_CASE); END_STATE(); - case 531: + case 579: ACCEPT_TOKEN(anon_sym_END_CASE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 532: + case 580: ACCEPT_TOKEN(anon_sym_FOR); END_STATE(); - case 533: + case 581: ACCEPT_TOKEN(anon_sym_FOR); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 534: + case 582: ACCEPT_TOKEN(anon_sym_TO); END_STATE(); - case 535: + case 583: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 536: + case 584: ACCEPT_TOKEN(anon_sym_DO); END_STATE(); - case 537: + case 585: ACCEPT_TOKEN(anon_sym_END_FOR); END_STATE(); - case 538: + case 586: ACCEPT_TOKEN(anon_sym_END_FOR); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 539: + case 587: ACCEPT_TOKEN(anon_sym_WHILE); END_STATE(); - case 540: + case 588: ACCEPT_TOKEN(anon_sym_WHILE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 541: + case 589: ACCEPT_TOKEN(anon_sym_END_WHILE); END_STATE(); - case 542: + case 590: ACCEPT_TOKEN(anon_sym_END_WHILE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 543: + case 591: ACCEPT_TOKEN(anon_sym_REPEAT); END_STATE(); - case 544: + case 592: ACCEPT_TOKEN(anon_sym_REPEAT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 545: + case 593: ACCEPT_TOKEN(anon_sym_UNTIL); END_STATE(); - case 546: + case 594: ACCEPT_TOKEN(anon_sym_UNTIL); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 547: + case 595: ACCEPT_TOKEN(anon_sym_END_REPEAT); END_STATE(); - case 548: + case 596: ACCEPT_TOKEN(anon_sym_REGION); END_STATE(); - case 549: + case 597: ACCEPT_TOKEN(anon_sym_REGION); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 550: + case 598: ACCEPT_TOKEN(anon_sym_END_REGION); END_STATE(); - case 551: + case 599: ACCEPT_TOKEN(anon_sym_END_REGION); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 552: + case 600: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(952); + if (lookahead == '/') ADVANCE(1034); END_STATE(); - case 553: + case 601: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 554: + case 602: ACCEPT_TOKEN(anon_sym_NOT); END_STATE(); - case 555: + case 603: ACCEPT_TOKEN(anon_sym_NOT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 556: + case 604: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 557: + case 605: ACCEPT_TOKEN(anon_sym_OR); END_STATE(); - case 558: + case 606: ACCEPT_TOKEN(anon_sym_XOR); END_STATE(); - case 559: + case 607: ACCEPT_TOKEN(anon_sym_AND); END_STATE(); - case 560: + case 608: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 561: + case 609: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(563); - if (lookahead == '>') ADVANCE(560); + if (lookahead == '=') ADVANCE(611); + if (lookahead == '>') ADVANCE(608); END_STATE(); - case 562: + case 610: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(564); + if (lookahead == '=') ADVANCE(612); END_STATE(); - case 563: + case 611: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 564: + case 612: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 565: + case 613: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 566: + case 614: ACCEPT_TOKEN(anon_sym_MOD); END_STATE(); - case 567: + case 615: ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '.') ADVANCE(349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (lookahead == '#') ADVANCE(389); + if (lookahead == '.') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); END_STATE(); - case 568: + case 616: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '6') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (lookahead == '.') ADVANCE(387); + if (lookahead == '6') ADVANCE(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); END_STATE(); - case 569: + case 617: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(569); + if (lookahead == '.') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(617); END_STATE(); - case 570: + case 618: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(618); END_STATE(); - case 571: + case 619: ACCEPT_TOKEN(sym_hex_number); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(619); END_STATE(); - case 572: + case 620: ACCEPT_TOKEN(sym_time_value); END_STATE(); - case 573: + case 621: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 574: + case 622: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(579); + if (lookahead == '\'') ADVANCE(627); END_STATE(); - case 575: + case 623: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 576: + case 624: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '(') ADVANCE(577); - if (lookahead == '/') ADVANCE(578); + if (lookahead == '(') ADVANCE(625); + if (lookahead == '/') ADVANCE(626); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(576); + lookahead == ' ') ADVANCE(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '(') ADVANCE(575); + lookahead != '(') ADVANCE(623); END_STATE(); - case 577: + case 625: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(28); - if (lookahead == '/') ADVANCE(30); + if (lookahead == '*') ADVANCE(30); + if (lookahead == '/') ADVANCE(32); END_STATE(); - case 578: + case 626: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '/') ADVANCE(952); + if (lookahead == '/') ADVANCE(1034); END_STATE(); - case 579: + case 627: ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE); END_STATE(); - case 580: + case 628: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 581: + case 629: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(586); + if (lookahead == '"') ADVANCE(634); END_STATE(); - case 582: + case 630: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 583: + case 631: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '(') ADVANCE(584); - if (lookahead == '/') ADVANCE(585); + if (lookahead == '(') ADVANCE(632); + if (lookahead == '/') ADVANCE(633); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(583); + lookahead == ' ') ADVANCE(631); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != '"') ADVANCE(582); + lookahead != '"') ADVANCE(630); END_STATE(); - case 584: + case 632: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(28); - if (lookahead == '/') ADVANCE(30); + if (lookahead == '*') ADVANCE(30); + if (lookahead == '/') ADVANCE(32); END_STATE(); - case 585: + case 633: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '/') ADVANCE(952); + if (lookahead == '/') ADVANCE(1034); END_STATE(); - case 586: + case 634: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 587: + case 635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(350); + if (lookahead == '#') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 588: + case 636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(807); - if (lookahead == 'O') ADVANCE(718); + if (lookahead == 'A') ADVANCE(878); + if (lookahead == 'O') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 589: + case 637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(853); + if (lookahead == 'A') ADVANCE(900); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 590: + case 638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(789); + if (lookahead == 'A') ADVANCE(934); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 591: + case 639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(736); + if (lookahead == 'A') ADVANCE(931); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 592: + case 640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(814); + if (lookahead == 'A') ADVANCE(859); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 593: + case 641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(703); + if (lookahead == 'A') ADVANCE(800); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 594: + case 642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(704); + if (lookahead == 'A') ADVANCE(886); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 595: + case 643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(680); + if (lookahead == 'A') ADVANCE(766); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 596: + case 644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(715); + if (lookahead == 'A') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 597: + case 645: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(790); + if (lookahead == 'A') ADVANCE(741); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 598: + case 646: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(791); + if (lookahead == 'A') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 599: + case 647: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(793); + if (lookahead == 'A') ADVANCE(860); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 600: + case 648: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(861); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(805); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 651: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A') ADVANCE(742); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 601: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(681); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 602: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 603: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(750); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 604: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 605: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 606: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(836); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 607: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(840); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 608: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(758); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 609: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(707); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 610: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(709); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 611: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(710); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 612: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 613: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(698); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 614: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(699); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 615: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(700); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 616: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(701); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 617: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(602); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 618: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 619: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(769); - if (lookahead == 'I') ADVANCE(721); - if (lookahead == 'N') ADVANCE(770); - if (lookahead == 'O') ADVANCE(842); - if (lookahead == 'R') ADVANCE(650); - if (lookahead == 'T') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 620: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(671); - if (lookahead == 'O') ADVANCE(794); - if (lookahead == 'S') ADVANCE(835); - if (lookahead == 'o') ADVANCE(929); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 621: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(841); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 622: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(839); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 623: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(472); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 624: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 625: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 626: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(863); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 627: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(860); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 628: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 629: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 630: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(858); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 631: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(861); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 632: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(857); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 633: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(864); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 634: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 635: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(665); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 636: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(529); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 637: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 638: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 639: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(958); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 640: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(449); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 641: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(467); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 642: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(527); - if (lookahead == 'I') ADVANCE(657); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 643: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(527); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 644: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(531); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 645: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(542); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 646: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(376); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 647: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(378); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 648: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(592); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 649: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 650: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(828); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 651: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(593); - if (lookahead == 'e') ADVANCE(870); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(594); - if (lookahead == 'e') ADVANCE(873); + if (lookahead == 'A') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(833); + if (lookahead == 'A') ADVANCE(816); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(837); + if (lookahead == 'A') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(838); + if (lookahead == 'A') ADVANCE(746); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(520); + if (lookahead == 'A') ADVANCE(911); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(525); + if (lookahead == 'A') ADVANCE(947); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(523); + if (lookahead == 'A') ADVANCE(915); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(848); + if (lookahead == 'A') ADVANCE(916); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(774); + if (lookahead == 'A') ADVANCE(826); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(849); + if (lookahead == 'B') ADVANCE(769); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(486); + if (lookahead == 'B') ADVANCE(771); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(494); + if (lookahead == 'B') ADVANCE(773); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(591); + if (lookahead == 'B') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(673); - if (lookahead == 'P') ADVANCE(648); + if (lookahead == 'B') ADVANCE(775); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(693); + if (lookahead == 'B') ADVANCE(776); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(608); + if (lookahead == 'C') ADVANCE(759); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(672); + if (lookahead == 'C') ADVANCE(760); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(597); - if (lookahead == 'h') ADVANCE(872); + if (lookahead == 'C') ADVANCE(761); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(686); + if (lookahead == 'C') ADVANCE(762); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(598); - if (lookahead == 'h') ADVANCE(876); + if (lookahead == 'C') ADVANCE(763); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(708); + if (lookahead == 'C') ADVANCE(764); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(765); + if (lookahead == 'C') ADVANCE(652); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(854); + if (lookahead == 'C') ADVANCE(898); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(813); + if (lookahead == 'C') ADVANCE(836); + if (lookahead == 'I') ADVANCE(785); + if (lookahead == 'N') ADVANCE(838); + if (lookahead == 'O') ADVANCE(918); + if (lookahead == 'R') ADVANCE(713); + if (lookahead == 'T') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(717); - if (lookahead == 'O') ADVANCE(623); - if (lookahead == 'i') ADVANCE(911); - if (lookahead == 'o') ADVANCE(879); + if (lookahead == 'C') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(658); + if (lookahead == 'C') ADVANCE(732); + if (lookahead == 'O') ADVANCE(864); + if (lookahead == 'S') ADVANCE(910); + if (lookahead == 'o') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(732); + if (lookahead == 'C') ADVANCE(913); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(705); + if (lookahead == 'C') ADVANCE(917); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(724); + if (lookahead == 'D') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(725); + if (lookahead == 'D') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(731); + if (lookahead == 'D') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(734); + if (lookahead == 'D') ADVANCE(942); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(728); + if (lookahead == 'D') ADVANCE(941); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(729); + if (lookahead == 'D') ADVANCE(937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(712); + if (lookahead == 'D') ADVANCE(940); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(746); - if (lookahead == 'T') ADVANCE(478); - if (lookahead == 'W') ADVANCE(772); - if (lookahead == 't') ADVANCE(480); + if (lookahead == 'D') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(747); - if (lookahead == 'T') ADVANCE(801); - if (lookahead == 't') ADVANCE(928); + if (lookahead == 'D') ADVANCE(943); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(771); + if (lookahead == 'D') ADVANCE(935); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(748); - if (lookahead == 'S') ADVANCE(692); + if (lookahead == 'D') ADVANCE(936); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(773); + if (lookahead == 'D') ADVANCE(939); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(749); + if (lookahead == 'D') ADVANCE(945); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(775); + if (lookahead == 'D') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(776); + if (lookahead == 'D') ADVANCE(951); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(780); + if (lookahead == 'E') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(781); + if (lookahead == 'E') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(855); + if (lookahead == 'E') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(364); + if (lookahead == 'E') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(354); + if (lookahead == 'E') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(362); + if (lookahead == 'E') ADVANCE(1040); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(365); + if (lookahead == 'E') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(404); + if (lookahead == 'E') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(455); + if (lookahead == 'E') ADVANCE(575); + if (lookahead == 'I') ADVANCE(718); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(461); + if (lookahead == 'E') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(546); + if (lookahead == 'E') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(806); - if (lookahead == 'N') ADVANCE(626); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'E') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(762); + if (lookahead == 'E') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(637); + if (lookahead == 'E') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(763); + if (lookahead == 'E') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(766); + if (lookahead == 'E') ADVANCE(643); + if (lookahead == 'e') ADVANCE(952); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(768); + if (lookahead == 'E') ADVANCE(644); + if (lookahead == 'e') ADVANCE(955); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(645); + if (lookahead == 'E') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(809); - if (lookahead == 'N') ADVANCE(627); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'E') ADVANCE(902); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(809); - if (lookahead == 'N') ADVANCE(627); + if (lookahead == 'E') ADVANCE(908); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(811); + if (lookahead == 'E') ADVANCE(912); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M') ADVANCE(784); + if (lookahead == 'E') ADVANCE(914); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M') ADVANCE(641); + if (lookahead == 'F') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(827); + if (lookahead == 'F') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(618); + if (lookahead == 'F') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(549); + if (lookahead == 'F') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(785); + if (lookahead == 'F') ADVANCE(843); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(859); + if (lookahead == 'F') ADVANCE(926); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(367); + if (lookahead == 'G') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(398); + if (lookahead == 'G') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(400); + if (lookahead == 'G') ADVANCE(734); + if (lookahead == 'P') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(551); + if (lookahead == 'G') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(369); + if (lookahead == 'G') ADVANCE(755); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(392); + if (lookahead == 'G') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(394); + if (lookahead == 'H') ADVANCE(733); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(808); + if (lookahead == 'H') ADVANCE(647); + if (lookahead == 'h') ADVANCE(954); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(662); + if (lookahead == 'H') ADVANCE(747); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(843); + if (lookahead == 'H') ADVANCE(648); + if (lookahead == 'h') ADVANCE(958); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(865); + if (lookahead == 'I') ADVANCE(772); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(663); + if (lookahead == 'I') ADVANCE(833); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(626); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(932); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(674); + if (lookahead == 'I') ADVANCE(782); + if (lookahead == 'O') ADVANCE(680); + if (lookahead == 'i') ADVANCE(993); + if (lookahead == 'o') ADVANCE(961); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(627); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(628); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(629); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(797); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(633); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(630); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(787); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(819); + if (lookahead == 'I') ADVANCE(788); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(631); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'I') ADVANCE(795); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(632); + if (lookahead == 'I') ADVANCE(798); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(820); - if (lookahead == 'n') ADVANCE(937); + if (lookahead == 'I') ADVANCE(791); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(821); - if (lookahead == 'n') ADVANCE(939); + if (lookahead == 'I') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(822); - if (lookahead == 'n') ADVANCE(940); + if (lookahead == 'I') ADVANCE(777); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(823); - if (lookahead == 'n') ADVANCE(941); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == 'T') ADVANCE(526); + if (lookahead == 'W') ADVANCE(841); + if (lookahead == 't') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(824); - if (lookahead == 'n') ADVANCE(945); + if (lookahead == 'I') ADVANCE(811); + if (lookahead == 'T') ADVANCE(872); + if (lookahead == 't') ADVANCE(1010); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(826); + if (lookahead == 'I') ADVANCE(840); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(831); + if (lookahead == 'I') ADVANCE(813); + if (lookahead == 'S') ADVANCE(753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(812); + if (lookahead == 'I') ADVANCE(842); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(866); + if (lookahead == 'I') ADVANCE(815); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(867); + if (lookahead == 'I') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(621); + if (lookahead == 'I') ADVANCE(845); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(622); + if (lookahead == 'I') ADVANCE(849); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(868); + if (lookahead == 'I') ADVANCE(850); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(697); + if (lookahead == 'I') ADVANCE(933); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(634); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'K') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(788); - if (lookahead == 'U') ADVANCE(719); + if (lookahead == 'K') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(788); + if (lookahead == 'K') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(613); + if (lookahead == 'K') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(614); + if (lookahead == 'K') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(702); + if (lookahead == 'K') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(720); + if (lookahead == 'L') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(615); + if (lookahead == 'L') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(764); - if (lookahead == 'Y') ADVANCE(830); - if (lookahead == 'o') ADVANCE(922); - if (lookahead == 'y') ADVANCE(947); + if (lookahead == 'L') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(616); + if (lookahead == 'L') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(730); + if (lookahead == 'L') ADVANCE(829); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(722); + if (lookahead == 'L') ADVANCE(877); + if (lookahead == 'N') ADVANCE(683); + if (lookahead == 'X') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(723); + if (lookahead == 'L') ADVANCE(830); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(795); - if (lookahead == 'o') ADVANCE(933); + if (lookahead == 'L') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(733); + if (lookahead == 'L') ADVANCE(832); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(792); + if (lookahead == 'L') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(726); + if (lookahead == 'L') ADVANCE(837); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(727); + if (lookahead == 'L') ADVANCE(839); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(825); + if (lookahead == 'L') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(845); + if (lookahead == 'L') ADVANCE(879); + if (lookahead == 'N') ADVANCE(684); + if (lookahead == 'X') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(752); + if (lookahead == 'L') ADVANCE(879); + if (lookahead == 'N') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(753); + if (lookahead == 'L') ADVANCE(881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(754); + if (lookahead == 'M') ADVANCE(853); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(757); + if (lookahead == 'M') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(805); + if (lookahead == 'N') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(388); + if (lookahead == 'N') ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(844); - if (lookahead == '_') ADVANCE(778); + if (lookahead == 'N') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(846); + if (lookahead == 'N') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(664); + if (lookahead == 'N') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(533); + if (lookahead == 'N') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(386); + if (lookahead == 'N') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(500); + if (lookahead == 'N') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(506); + if (lookahead == 'N') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(538); + if (lookahead == 'N') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(402); + if (lookahead == 'N') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(624); + if (lookahead == 'N') ADVANCE(901); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(625); + if (lookahead == 'N') ADVANCE(723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(797); + if (lookahead == 'N') ADVANCE(938); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(589); + if (lookahead == 'N') ADVANCE(921); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(649); + if (lookahead == 'N') ADVANCE(724); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(652); + if (lookahead == 'N') ADVANCE(683); + if (lookahead == 'X') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(847); + if (lookahead == 'N') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 801: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(684); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(685); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(686); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 804: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 805: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 806: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(687); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 807: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(891); + if (lookahead == 'n') ADVANCE(1019); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 808: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(688); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 809: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(892); + if (lookahead == 'n') ADVANCE(1021); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 810: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(689); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 811: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(893); + if (lookahead == 'n') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 812: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(690); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 813: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(894); + if (lookahead == 'n') ADVANCE(1023); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 814: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(691); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 815: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == 'n') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 816: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(897); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 817: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(905); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 818: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(946); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 819: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 820: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(948); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 821: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(678); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 823: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(679); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 824: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(950); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 825: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(694); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 826: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(758); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 827: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(858); + if (lookahead == 'U') ADVANCE(783); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 828: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(858); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 829: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 830: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 831: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(765); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 832: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 833: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(784); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 834: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 835: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(831); + if (lookahead == 'Y') ADVANCE(904); + if (lookahead == 'o') ADVANCE(1004); + if (lookahead == 'y') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 836: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(793); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(796); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 839: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(786); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(865); + if (lookahead == 'o') ADVANCE(1015); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(818); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(789); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(790); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(896); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(920); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(819); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(820); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(821); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(697); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(919); + if (lookahead == '_') ADVANCE(847); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(922); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(726); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(554); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(681); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 865: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 802: + case 866: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(683); + if (lookahead == 'R') ADVANCE(924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 803: + case 867: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(653); + if (lookahead == 'R') ADVANCE(868); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 804: + case 868: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(655); + if (lookahead == 'R') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 805: + case 869: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(667); + if (lookahead == 'R') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 806: + case 870: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(642); + if (lookahead == 'R') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 807: + case 871: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(636); + if (lookahead == 'R') ADVANCE(923); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 808: + case 872: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(829); + if (lookahead == 'R') ADVANCE(743); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 809: + case 873: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(643); + if (lookahead == 'R') ADVANCE(744); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 810: + case 874: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(644); + if (lookahead == 'R') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 811: + case 875: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(647); + if (lookahead == 'R') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 812: + case 876: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(834); + if (lookahead == 'R') ADVANCE(728); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 813: + case 877: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(956); + if (lookahead == 'S') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 814: + case 878: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(544); + if (lookahead == 'S') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 815: + case 879: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(786); + if (lookahead == 'S') ADVANCE(704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 816: + case 880: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(380); + if (lookahead == 'S') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 817: + case 881: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(384); + if (lookahead == 'S') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 818: + case 882: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(382); + if (lookahead == 'S') ADVANCE(906); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 819: + case 883: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(396); + if (lookahead == 'S') ADVANCE(903); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 820: + case 884: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(408); + if (lookahead == 'S') ADVANCE(909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 821: + case 885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(414); + if (lookahead == 'T') ADVANCE(1038); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 822: + case 886: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(420); + if (lookahead == 'T') ADVANCE(592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 823: + case 887: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 824: + case 888: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(426); + if (lookahead == 'T') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 825: + case 889: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(555); + if (lookahead == 'T') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 826: + case 890: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(390); + if (lookahead == 'T') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 827: + case 891: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(678); + if (lookahead == 'T') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 828: + case 892: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(595); + if (lookahead == 'T') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 829: + case 893: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(600); + if (lookahead == 'T') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 830: + case 894: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(640); + if (lookahead == 'T') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 831: + case 895: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(679); + if (lookahead == 'T') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 832: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(689); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 833: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(601); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 834: + case 896: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 835: + case 897: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(802); - if (lookahead == 't') ADVANCE(932); + if (lookahead == 'T') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 836: + case 898: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(691); + if (lookahead == 'T') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 837: + case 899: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(604); + if (lookahead == 'T') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 838: + case 900: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(605); + if (lookahead == 'T') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 839: + case 901: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(694); + if (lookahead == 'T') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 840: + case 902: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(695); + if (lookahead == 'T') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 841: + case 903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(696); + if (lookahead == 'T') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 842: + case 904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(815); + if (lookahead == 'T') ADVANCE(701); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 843: + case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(639); + if (lookahead == 'T') ADVANCE(740); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 844: + case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(816); + if (lookahead == 'T') ADVANCE(866); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 845: + case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(817); + if (lookahead == 'T') ADVANCE(750); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 846: + case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(818); + if (lookahead == 'T') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 847: + case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(646); + if (lookahead == 'T') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 848: + case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(755); + if (lookahead == 'T') ADVANCE(873); + if (lookahead == 't') ADVANCE(1014); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 849: + case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(756); + if (lookahead == 'T') ADVANCE(752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 850: + case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V') ADVANCE(599); + if (lookahead == 'T') ADVANCE(654); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 851: + case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W') ADVANCE(670); + if (lookahead == 'T') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 852: + case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X') ADVANCE(675); + if (lookahead == 'T') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 853: + case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(510); + if (lookahead == 'T') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 854: + case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Z') ADVANCE(606); + if (lookahead == 'T') ADVANCE(756); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(757); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 918: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(899); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 919: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(887); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 920: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 921: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 923: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(707); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 924: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 925: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(822); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 926: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V') ADVANCE(649); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W') ADVANCE(731); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y') ADVANCE(854); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y') ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 932: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Z') ADVANCE(656); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 855: + case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Z') ADVANCE(607); + if (lookahead == 'Z') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 856: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(851); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 857: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 858: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 859: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(803); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 860: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(617); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 861: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(660); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 862: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(783); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 863: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(677); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 864: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(798); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 865: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(610); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 866: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(611); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 867: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(612); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 868: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(804); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 869: + case 934: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 870: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(907); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 871: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 872: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(924); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 873: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(909); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 874: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(925); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 875: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(910); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 876: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(926); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 877: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(927); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 878: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(896); - if (lookahead == 'o') ADVANCE(931); - if (lookahead == 's') ADVANCE(949); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 879: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 880: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(476); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 881: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 882: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(442); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 883: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(446); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 884: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(448); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 885: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(451); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 886: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 887: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 888: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(471); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 889: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 890: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 891: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 892: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(488); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 893: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 894: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 895: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(874); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 896: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(877); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 897: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(913); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 898: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(914); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 899: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(916); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 900: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(917); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 901: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(918); - if (lookahead == 't') ADVANCE(482); - if (lookahead == 'w') ADVANCE(923); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 902: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(912); - if (lookahead == 'o') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 903: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 't') ADVANCE(930); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 904: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 's') ADVANCE(905); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 905: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(921); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 906: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(406); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 907: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(457); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 908: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 909: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(463); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 910: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(465); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 911: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 912: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(888); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 913: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(891); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 914: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(892); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 915: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(938); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 916: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(893); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 917: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 918: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(942); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 919: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(943); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 920: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(944); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 921: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(946); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 922: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(906); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 923: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(935); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 924: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(498); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 925: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(502); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 926: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 927: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(508); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 928: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(897); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 929: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 930: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(898); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 931: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(882); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 932: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 933: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); - END_STATE(); - case 934: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(900); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(884); + if (lookahead == '_') ADVANCE(928); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(890); + if (lookahead == '_') ADVANCE(927); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(410); + if (lookahead == '_') ADVANCE(721); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(412); + if (lookahead == '_') ADVANCE(874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(416); + if (lookahead == '_') ADVANCE(882); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(422); + if (lookahead == '_') ADVANCE(720); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(434); + if (lookahead == '_') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(418); + if (lookahead == '_') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(424); + if (lookahead == '_') ADVANCE(852); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(436); + if (lookahead == '_') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(428); + if (lookahead == '_') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(430); + if (lookahead == '_') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(885); + if (lookahead == '_') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(887); + if (lookahead == '_') ADVANCE(665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(934); + if (lookahead == '_') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(948); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 951: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 952: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(989); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 951: + case 953: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(990); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 954: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1006); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 955: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(991); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 956: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 957: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(992); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 958: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1008); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 959: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1009); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 960: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(978); + if (lookahead == 'o') ADVANCE(1013); + if (lookahead == 's') ADVANCE(1031); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 962: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 963: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 964: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 965: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 966: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 968: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 969: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 970: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(519); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 971: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(953); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 972: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(957); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 973: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 974: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 976: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 977: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(956); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(959); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 979: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(995); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 980: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(996); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 981: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(998); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 982: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(999); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 983: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(1000); + if (lookahead == 't') ADVANCE(530); + if (lookahead == 'w') ADVANCE(1005); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 984: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(994); + if (lookahead == 'o') ADVANCE(962); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 985: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(1001); + if (lookahead == 't') ADVANCE(1012); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 986: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(1002); + if (lookahead == 's') ADVANCE(987); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 987: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(1003); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 988: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 989: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 990: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 991: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 992: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 993: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(968); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 994: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(970); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 995: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(973); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 996: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(974); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 997: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1020); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 998: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(975); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 999: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(976); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1000: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1001: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1025); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1002: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1026); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1003: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1004: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(988); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1005: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(1017); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1006: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1007: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1008: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1009: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1010: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(979); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1011: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1012: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(980); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1013: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(964); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1014: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(981); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1015: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(965); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1016: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(982); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1017: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(966); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1018: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(972); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1019: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(458); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1020: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1021: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1022: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1023: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1024: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1025: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1026: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1027: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1028: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1029: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(967); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1030: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(969); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1031: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1016); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1032: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1030); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); + END_STATE(); + case 1033: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 952: + case 1034: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(952); + lookahead != '\n') ADVANCE(1034); END_STATE(); - case 953: + case 1035: ACCEPT_TOKEN(sym_block_comment); END_STATE(); - case 954: + case 1036: ACCEPT_TOKEN(sym_c_style_comment); - if (lookahead == '*') ADVANCE(33); - if (lookahead != 0) ADVANCE(29); + if (lookahead == '*') ADVANCE(35); + if (lookahead != 0) ADVANCE(31); END_STATE(); - case 955: + case 1037: ACCEPT_TOKEN(anon_sym_EXIT); END_STATE(); - case 956: + case 1038: ACCEPT_TOKEN(anon_sym_EXIT); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); - case 957: + case 1039: ACCEPT_TOKEN(anon_sym_CONTINUE); END_STATE(); - case 958: + case 1040: ACCEPT_TOKEN(anon_sym_CONTINUE); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(951); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1033); END_STATE(); default: return false; @@ -9113,16 +9899,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 352}, - [2] = {.lex_state = 16}, - [3] = {.lex_state = 16}, - [4] = {.lex_state = 16}, - [5] = {.lex_state = 16}, - [6] = {.lex_state = 16}, - [7] = {.lex_state = 352}, - [8] = {.lex_state = 352}, - [9] = {.lex_state = 6}, - [10] = {.lex_state = 6}, + [1] = {.lex_state = 390}, + [2] = {.lex_state = 17}, + [3] = {.lex_state = 17}, + [4] = {.lex_state = 17}, + [5] = {.lex_state = 17}, + [6] = {.lex_state = 17}, + [7] = {.lex_state = 17}, + [8] = {.lex_state = 17}, + [9] = {.lex_state = 390}, + [10] = {.lex_state = 390}, [11] = {.lex_state = 6}, [12] = {.lex_state = 6}, [13] = {.lex_state = 6}, @@ -9146,960 +9932,960 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 6}, [32] = {.lex_state = 6}, [33] = {.lex_state = 6}, - [34] = {.lex_state = 8}, + [34] = {.lex_state = 6}, [35] = {.lex_state = 6}, - [36] = {.lex_state = 8}, - [37] = {.lex_state = 6}, + [36] = {.lex_state = 6}, + [37] = {.lex_state = 8}, [38] = {.lex_state = 8}, - [39] = {.lex_state = 7}, - [40] = {.lex_state = 9}, - [41] = {.lex_state = 5}, - [42] = {.lex_state = 10}, + [39] = {.lex_state = 6}, + [40] = {.lex_state = 6}, + [41] = {.lex_state = 8}, + [42] = {.lex_state = 6}, [43] = {.lex_state = 7}, - [44] = {.lex_state = 11}, - [45] = {.lex_state = 11}, - [46] = {.lex_state = 15}, - [47] = {.lex_state = 15}, - [48] = {.lex_state = 12}, - [49] = {.lex_state = 9}, - [50] = {.lex_state = 7}, - [51] = {.lex_state = 7}, - [52] = {.lex_state = 11}, - [53] = {.lex_state = 11}, - [54] = {.lex_state = 15}, - [55] = {.lex_state = 15}, - [56] = {.lex_state = 12}, - [57] = {.lex_state = 7}, - [58] = {.lex_state = 7}, - [59] = {.lex_state = 11}, - [60] = {.lex_state = 11}, - [61] = {.lex_state = 15}, - [62] = {.lex_state = 15}, - [63] = {.lex_state = 7}, - [64] = {.lex_state = 7}, - [65] = {.lex_state = 11}, + [44] = {.lex_state = 9}, + [45] = {.lex_state = 9}, + [46] = {.lex_state = 10}, + [47] = {.lex_state = 9}, + [48] = {.lex_state = 11}, + [49] = {.lex_state = 11}, + [50] = {.lex_state = 12}, + [51] = {.lex_state = 12}, + [52] = {.lex_state = 16}, + [53] = {.lex_state = 16}, + [54] = {.lex_state = 9}, + [55] = {.lex_state = 9}, + [56] = {.lex_state = 7}, + [57] = {.lex_state = 11}, + [58] = {.lex_state = 11}, + [59] = {.lex_state = 12}, + [60] = {.lex_state = 12}, + [61] = {.lex_state = 16}, + [62] = {.lex_state = 16}, + [63] = {.lex_state = 9}, + [64] = {.lex_state = 9}, + [65] = {.lex_state = 7}, [66] = {.lex_state = 11}, - [67] = {.lex_state = 15}, - [68] = {.lex_state = 15}, - [69] = {.lex_state = 13}, - [70] = {.lex_state = 7}, - [71] = {.lex_state = 7}, - [72] = {.lex_state = 11}, - [73] = {.lex_state = 11}, - [74] = {.lex_state = 15}, - [75] = {.lex_state = 15}, - [76] = {.lex_state = 13}, - [77] = {.lex_state = 7}, - [78] = {.lex_state = 7}, - [79] = {.lex_state = 11}, - [80] = {.lex_state = 11}, - [81] = {.lex_state = 15}, - [82] = {.lex_state = 15}, - [83] = {.lex_state = 13}, + [67] = {.lex_state = 11}, + [68] = {.lex_state = 12}, + [69] = {.lex_state = 12}, + [70] = {.lex_state = 16}, + [71] = {.lex_state = 16}, + [72] = {.lex_state = 9}, + [73] = {.lex_state = 9}, + [74] = {.lex_state = 7}, + [75] = {.lex_state = 11}, + [76] = {.lex_state = 11}, + [77] = {.lex_state = 12}, + [78] = {.lex_state = 12}, + [79] = {.lex_state = 16}, + [80] = {.lex_state = 16}, + [81] = {.lex_state = 9}, + [82] = {.lex_state = 9}, + [83] = {.lex_state = 5}, [84] = {.lex_state = 7}, - [85] = {.lex_state = 7}, + [85] = {.lex_state = 11}, [86] = {.lex_state = 11}, - [87] = {.lex_state = 11}, - [88] = {.lex_state = 15}, - [89] = {.lex_state = 15}, - [90] = {.lex_state = 13}, - [91] = {.lex_state = 7}, - [92] = {.lex_state = 7}, + [87] = {.lex_state = 12}, + [88] = {.lex_state = 12}, + [89] = {.lex_state = 16}, + [90] = {.lex_state = 16}, + [91] = {.lex_state = 9}, + [92] = {.lex_state = 9}, [93] = {.lex_state = 11}, [94] = {.lex_state = 11}, - [95] = {.lex_state = 15}, - [96] = {.lex_state = 15}, - [97] = {.lex_state = 7}, - [98] = {.lex_state = 11}, - [99] = {.lex_state = 15}, - [100] = {.lex_state = 15}, - [101] = {.lex_state = 15}, - [102] = {.lex_state = 15}, - [103] = {.lex_state = 15}, - [104] = {.lex_state = 10}, - [105] = {.lex_state = 14}, + [95] = {.lex_state = 12}, + [96] = {.lex_state = 16}, + [97] = {.lex_state = 9}, + [98] = {.lex_state = 9}, + [99] = {.lex_state = 11}, + [100] = {.lex_state = 9}, + [101] = {.lex_state = 9}, + [102] = {.lex_state = 9}, + [103] = {.lex_state = 10}, + [104] = {.lex_state = 13}, + [105] = {.lex_state = 13}, [106] = {.lex_state = 14}, - [107] = {.lex_state = 7}, - [108] = {.lex_state = 11}, - [109] = {.lex_state = 15}, + [107] = {.lex_state = 11}, + [108] = {.lex_state = 12}, + [109] = {.lex_state = 16}, [110] = {.lex_state = 9}, - [111] = {.lex_state = 12}, + [111] = {.lex_state = 5}, [112] = {.lex_state = 14}, - [113] = {.lex_state = 13}, - [114] = {.lex_state = 10}, - [115] = {.lex_state = 9}, - [116] = {.lex_state = 10}, - [117] = {.lex_state = 9}, - [118] = {.lex_state = 5}, - [119] = {.lex_state = 13}, - [120] = {.lex_state = 13}, - [121] = {.lex_state = 13}, - [122] = {.lex_state = 10}, - [123] = {.lex_state = 9}, - [124] = {.lex_state = 10}, - [125] = {.lex_state = 9}, - [126] = {.lex_state = 13}, - [127] = {.lex_state = 13}, - [128] = {.lex_state = 13}, - [129] = {.lex_state = 13}, + [113] = {.lex_state = 15}, + [114] = {.lex_state = 13}, + [115] = {.lex_state = 10}, + [116] = {.lex_state = 7}, + [117] = {.lex_state = 10}, + [118] = {.lex_state = 11}, + [119] = {.lex_state = 14}, + [120] = {.lex_state = 10}, + [121] = {.lex_state = 11}, + [122] = {.lex_state = 14}, + [123] = {.lex_state = 7}, + [124] = {.lex_state = 7}, + [125] = {.lex_state = 7}, + [126] = {.lex_state = 7}, + [127] = {.lex_state = 10}, + [128] = {.lex_state = 12}, + [129] = {.lex_state = 14}, [130] = {.lex_state = 10}, - [131] = {.lex_state = 9}, - [132] = {.lex_state = 10}, - [133] = {.lex_state = 5}, - [134] = {.lex_state = 9}, - [135] = {.lex_state = 13}, - [136] = {.lex_state = 13}, - [137] = {.lex_state = 13}, - [138] = {.lex_state = 13}, - [139] = {.lex_state = 10}, + [131] = {.lex_state = 12}, + [132] = {.lex_state = 14}, + [133] = {.lex_state = 7}, + [134] = {.lex_state = 7}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 7}, + [137] = {.lex_state = 10}, + [138] = {.lex_state = 16}, + [139] = {.lex_state = 14}, [140] = {.lex_state = 10}, - [141] = {.lex_state = 9}, - [142] = {.lex_state = 10}, - [143] = {.lex_state = 9}, - [144] = {.lex_state = 13}, - [145] = {.lex_state = 13}, - [146] = {.lex_state = 13}, - [147] = {.lex_state = 13}, - [148] = {.lex_state = 10}, - [149] = {.lex_state = 9}, + [141] = {.lex_state = 16}, + [142] = {.lex_state = 14}, + [143] = {.lex_state = 7}, + [144] = {.lex_state = 7}, + [145] = {.lex_state = 5}, + [146] = {.lex_state = 7}, + [147] = {.lex_state = 10}, + [148] = {.lex_state = 9}, + [149] = {.lex_state = 14}, [150] = {.lex_state = 10}, [151] = {.lex_state = 9}, - [152] = {.lex_state = 13}, - [153] = {.lex_state = 13}, - [154] = {.lex_state = 13}, - [155] = {.lex_state = 13}, - [156] = {.lex_state = 10}, - [157] = {.lex_state = 9}, - [158] = {.lex_state = 10}, - [159] = {.lex_state = 9}, - [160] = {.lex_state = 13}, - [161] = {.lex_state = 13}, - [162] = {.lex_state = 13}, - [163] = {.lex_state = 13}, - [164] = {.lex_state = 10}, + [152] = {.lex_state = 14}, + [153] = {.lex_state = 7}, + [154] = {.lex_state = 7}, + [155] = {.lex_state = 7}, + [156] = {.lex_state = 7}, + [157] = {.lex_state = 10}, + [158] = {.lex_state = 11}, + [159] = {.lex_state = 14}, + [160] = {.lex_state = 10}, + [161] = {.lex_state = 16}, + [162] = {.lex_state = 14}, + [163] = {.lex_state = 7}, + [164] = {.lex_state = 7}, [165] = {.lex_state = 7}, - [166] = {.lex_state = 9}, + [166] = {.lex_state = 7}, [167] = {.lex_state = 10}, - [168] = {.lex_state = 11}, - [169] = {.lex_state = 9}, - [170] = {.lex_state = 13}, - [171] = {.lex_state = 13}, - [172] = {.lex_state = 13}, - [173] = {.lex_state = 13}, - [174] = {.lex_state = 10}, - [175] = {.lex_state = 9}, - [176] = {.lex_state = 10}, - [177] = {.lex_state = 15}, - [178] = {.lex_state = 9}, - [179] = {.lex_state = 13}, - [180] = {.lex_state = 13}, - [181] = {.lex_state = 13}, - [182] = {.lex_state = 13}, - [183] = {.lex_state = 10}, - [184] = {.lex_state = 9}, - [185] = {.lex_state = 10}, - [186] = {.lex_state = 5}, - [187] = {.lex_state = 9}, - [188] = {.lex_state = 13}, - [189] = {.lex_state = 13}, - [190] = {.lex_state = 13}, - [191] = {.lex_state = 13}, - [192] = {.lex_state = 10}, - [193] = {.lex_state = 9}, - [194] = {.lex_state = 10}, - [195] = {.lex_state = 9}, - [196] = {.lex_state = 13}, - [197] = {.lex_state = 13}, - [198] = {.lex_state = 13}, - [199] = {.lex_state = 13}, + [168] = {.lex_state = 12}, + [169] = {.lex_state = 14}, + [170] = {.lex_state = 10}, + [171] = {.lex_state = 14}, + [172] = {.lex_state = 14}, + [173] = {.lex_state = 7}, + [174] = {.lex_state = 7}, + [175] = {.lex_state = 7}, + [176] = {.lex_state = 7}, + [177] = {.lex_state = 10}, + [178] = {.lex_state = 11}, + [179] = {.lex_state = 14}, + [180] = {.lex_state = 10}, + [181] = {.lex_state = 11}, + [182] = {.lex_state = 14}, + [183] = {.lex_state = 7}, + [184] = {.lex_state = 7}, + [185] = {.lex_state = 7}, + [186] = {.lex_state = 7}, + [187] = {.lex_state = 10}, + [188] = {.lex_state = 12}, + [189] = {.lex_state = 14}, + [190] = {.lex_state = 10}, + [191] = {.lex_state = 12}, + [192] = {.lex_state = 14}, + [193] = {.lex_state = 7}, + [194] = {.lex_state = 7}, + [195] = {.lex_state = 7}, + [196] = {.lex_state = 7}, + [197] = {.lex_state = 10}, + [198] = {.lex_state = 16}, + [199] = {.lex_state = 14}, [200] = {.lex_state = 10}, - [201] = {.lex_state = 9}, - [202] = {.lex_state = 10}, - [203] = {.lex_state = 9}, - [204] = {.lex_state = 13}, - [205] = {.lex_state = 13}, - [206] = {.lex_state = 13}, - [207] = {.lex_state = 13}, - [208] = {.lex_state = 5}, - [209] = {.lex_state = 5}, - [210] = {.lex_state = 5}, - [211] = {.lex_state = 5}, - [212] = {.lex_state = 5}, - [213] = {.lex_state = 5}, - [214] = {.lex_state = 5}, - [215] = {.lex_state = 5}, - [216] = {.lex_state = 5}, - [217] = {.lex_state = 5}, - [218] = {.lex_state = 5}, - [219] = {.lex_state = 5}, - [220] = {.lex_state = 5}, - [221] = {.lex_state = 5}, - [222] = {.lex_state = 5}, - [223] = {.lex_state = 5}, - [224] = {.lex_state = 5}, - [225] = {.lex_state = 5}, - [226] = {.lex_state = 5}, - [227] = {.lex_state = 5}, - [228] = {.lex_state = 5}, - [229] = {.lex_state = 13}, - [230] = {.lex_state = 21}, - [231] = {.lex_state = 21}, - [232] = {.lex_state = 352}, - [233] = {.lex_state = 20}, - [234] = {.lex_state = 352}, - [235] = {.lex_state = 352}, - [236] = {.lex_state = 6}, - [237] = {.lex_state = 6}, - [238] = {.lex_state = 352}, - [239] = {.lex_state = 8}, - [240] = {.lex_state = 8}, - [241] = {.lex_state = 6}, - [242] = {.lex_state = 6}, - [243] = {.lex_state = 21}, - [244] = {.lex_state = 21}, - [245] = {.lex_state = 21}, - [246] = {.lex_state = 21}, - [247] = {.lex_state = 8}, - [248] = {.lex_state = 8}, - [249] = {.lex_state = 11}, - [250] = {.lex_state = 7}, - [251] = {.lex_state = 15}, - [252] = {.lex_state = 11}, - [253] = {.lex_state = 15}, - [254] = {.lex_state = 10}, - [255] = {.lex_state = 13}, - [256] = {.lex_state = 10}, - [257] = {.lex_state = 352}, + [201] = {.lex_state = 16}, + [202] = {.lex_state = 14}, + [203] = {.lex_state = 7}, + [204] = {.lex_state = 7}, + [205] = {.lex_state = 7}, + [206] = {.lex_state = 7}, + [207] = {.lex_state = 10}, + [208] = {.lex_state = 9}, + [209] = {.lex_state = 14}, + [210] = {.lex_state = 10}, + [211] = {.lex_state = 9}, + [212] = {.lex_state = 14}, + [213] = {.lex_state = 7}, + [214] = {.lex_state = 7}, + [215] = {.lex_state = 7}, + [216] = {.lex_state = 7}, + [217] = {.lex_state = 10}, + [218] = {.lex_state = 15}, + [219] = {.lex_state = 14}, + [220] = {.lex_state = 10}, + [221] = {.lex_state = 16}, + [222] = {.lex_state = 14}, + [223] = {.lex_state = 7}, + [224] = {.lex_state = 7}, + [225] = {.lex_state = 7}, + [226] = {.lex_state = 7}, + [227] = {.lex_state = 10}, + [228] = {.lex_state = 11}, + [229] = {.lex_state = 14}, + [230] = {.lex_state = 10}, + [231] = {.lex_state = 11}, + [232] = {.lex_state = 14}, + [233] = {.lex_state = 7}, + [234] = {.lex_state = 7}, + [235] = {.lex_state = 7}, + [236] = {.lex_state = 7}, + [237] = {.lex_state = 12}, + [238] = {.lex_state = 12}, + [239] = {.lex_state = 16}, + [240] = {.lex_state = 5}, + [241] = {.lex_state = 5}, + [242] = {.lex_state = 5}, + [243] = {.lex_state = 5}, + [244] = {.lex_state = 5}, + [245] = {.lex_state = 5}, + [246] = {.lex_state = 5}, + [247] = {.lex_state = 5}, + [248] = {.lex_state = 5}, + [249] = {.lex_state = 5}, + [250] = {.lex_state = 5}, + [251] = {.lex_state = 5}, + [252] = {.lex_state = 5}, + [253] = {.lex_state = 5}, + [254] = {.lex_state = 5}, + [255] = {.lex_state = 5}, + [256] = {.lex_state = 5}, + [257] = {.lex_state = 5}, [258] = {.lex_state = 5}, [259] = {.lex_state = 5}, - [260] = {.lex_state = 12}, - [261] = {.lex_state = 9}, - [262] = {.lex_state = 9}, - [263] = {.lex_state = 14}, - [264] = {.lex_state = 14}, - [265] = {.lex_state = 21}, - [266] = {.lex_state = 7}, - [267] = {.lex_state = 12}, - [268] = {.lex_state = 352}, - [269] = {.lex_state = 13}, - [270] = {.lex_state = 6}, - [271] = {.lex_state = 9}, - [272] = {.lex_state = 7}, - [273] = {.lex_state = 7}, - [274] = {.lex_state = 12}, - [275] = {.lex_state = 6}, - [276] = {.lex_state = 15}, - [277] = {.lex_state = 5}, - [278] = {.lex_state = 12}, - [279] = {.lex_state = 13}, - [280] = {.lex_state = 11}, - [281] = {.lex_state = 14}, - [282] = {.lex_state = 8}, - [283] = {.lex_state = 14}, - [284] = {.lex_state = 8}, - [285] = {.lex_state = 5}, - [286] = {.lex_state = 10}, - [287] = {.lex_state = 11}, - [288] = {.lex_state = 9}, - [289] = {.lex_state = 10}, - [290] = {.lex_state = 13}, - [291] = {.lex_state = 15}, - [292] = {.lex_state = 352}, - [293] = {.lex_state = 352}, - [294] = {.lex_state = 352}, - [295] = {.lex_state = 352}, - [296] = {.lex_state = 352}, - [297] = {.lex_state = 352}, - [298] = {.lex_state = 352}, - [299] = {.lex_state = 352}, - [300] = {.lex_state = 352}, - [301] = {.lex_state = 352}, - [302] = {.lex_state = 352}, - [303] = {.lex_state = 352}, - [304] = {.lex_state = 352}, - [305] = {.lex_state = 352}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 352}, - [308] = {.lex_state = 352}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 352}, - [312] = {.lex_state = 352}, - [313] = {.lex_state = 352}, - [314] = {.lex_state = 352}, - [315] = {.lex_state = 352}, - [316] = {.lex_state = 352}, - [317] = {.lex_state = 352}, - [318] = {.lex_state = 352}, - [319] = {.lex_state = 352}, - [320] = {.lex_state = 0}, - [321] = {.lex_state = 352}, - [322] = {.lex_state = 352}, - [323] = {.lex_state = 352}, - [324] = {.lex_state = 352}, - [325] = {.lex_state = 352}, - [326] = {.lex_state = 352}, - [327] = {.lex_state = 352}, - [328] = {.lex_state = 0}, - [329] = {.lex_state = 352}, - [330] = {.lex_state = 352}, - [331] = {.lex_state = 0}, - [332] = {.lex_state = 0}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 352}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 352}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 352}, - [340] = {.lex_state = 352}, - [341] = {.lex_state = 352}, - [342] = {.lex_state = 352}, - [343] = {.lex_state = 352}, - [344] = {.lex_state = 352}, - [345] = {.lex_state = 352}, - [346] = {.lex_state = 352}, - [347] = {.lex_state = 352}, - [348] = {.lex_state = 352}, - [349] = {.lex_state = 352}, - [350] = {.lex_state = 352}, - [351] = {.lex_state = 352}, - [352] = {.lex_state = 352}, - [353] = {.lex_state = 352}, - [354] = {.lex_state = 352}, - [355] = {.lex_state = 352}, - [356] = {.lex_state = 352}, - [357] = {.lex_state = 352}, - [358] = {.lex_state = 352}, - [359] = {.lex_state = 352}, - [360] = {.lex_state = 352}, - [361] = {.lex_state = 352}, - [362] = {.lex_state = 352}, - [363] = {.lex_state = 352}, - [364] = {.lex_state = 352}, - [365] = {.lex_state = 352}, - [366] = {.lex_state = 352}, - [367] = {.lex_state = 352}, - [368] = {.lex_state = 352}, - [369] = {.lex_state = 352}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 352}, - [372] = {.lex_state = 352}, - [373] = {.lex_state = 352}, - [374] = {.lex_state = 352}, - [375] = {.lex_state = 352}, - [376] = {.lex_state = 352}, - [377] = {.lex_state = 352}, - [378] = {.lex_state = 352}, - [379] = {.lex_state = 352}, - [380] = {.lex_state = 0}, - [381] = {.lex_state = 6}, - [382] = {.lex_state = 8}, - [383] = {.lex_state = 8}, - [384] = {.lex_state = 8}, - [385] = {.lex_state = 8}, - [386] = {.lex_state = 8}, - [387] = {.lex_state = 8}, - [388] = {.lex_state = 8}, - [389] = {.lex_state = 10}, - [390] = {.lex_state = 8}, - [391] = {.lex_state = 8}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 10}, - [394] = {.lex_state = 8}, - [395] = {.lex_state = 8}, - [396] = {.lex_state = 8}, - [397] = {.lex_state = 8}, - [398] = {.lex_state = 9}, - [399] = {.lex_state = 12}, - [400] = {.lex_state = 14}, - [401] = {.lex_state = 8}, - [402] = {.lex_state = 8}, - [403] = {.lex_state = 5}, - [404] = {.lex_state = 8}, - [405] = {.lex_state = 8}, - [406] = {.lex_state = 9}, - [407] = {.lex_state = 5}, - [408] = {.lex_state = 8}, - [409] = {.lex_state = 8}, - [410] = {.lex_state = 7}, - [411] = {.lex_state = 8}, - [412] = {.lex_state = 8}, - [413] = {.lex_state = 8}, - [414] = {.lex_state = 7}, - [415] = {.lex_state = 8}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 13}, - [421] = {.lex_state = 11}, - [422] = {.lex_state = 13}, - [423] = {.lex_state = 12}, - [424] = {.lex_state = 8}, - [425] = {.lex_state = 11}, - [426] = {.lex_state = 6}, - [427] = {.lex_state = 6}, - [428] = {.lex_state = 6}, - [429] = {.lex_state = 6}, - [430] = {.lex_state = 6}, - [431] = {.lex_state = 6}, - [432] = {.lex_state = 6}, - [433] = {.lex_state = 8}, - [434] = {.lex_state = 6}, - [435] = {.lex_state = 6}, - [436] = {.lex_state = 6}, - [437] = {.lex_state = 8}, - [438] = {.lex_state = 6}, - [439] = {.lex_state = 6}, - [440] = {.lex_state = 6}, - [441] = {.lex_state = 6}, + [260] = {.lex_state = 5}, + [261] = {.lex_state = 5}, + [262] = {.lex_state = 5}, + [263] = {.lex_state = 5}, + [264] = {.lex_state = 15}, + [265] = {.lex_state = 22}, + [266] = {.lex_state = 22}, + [267] = {.lex_state = 390}, + [268] = {.lex_state = 390}, + [269] = {.lex_state = 390}, + [270] = {.lex_state = 390}, + [271] = {.lex_state = 21}, + [272] = {.lex_state = 6}, + [273] = {.lex_state = 6}, + [274] = {.lex_state = 8}, + [275] = {.lex_state = 8}, + [276] = {.lex_state = 390}, + [277] = {.lex_state = 390}, + [278] = {.lex_state = 6}, + [279] = {.lex_state = 8}, + [280] = {.lex_state = 6}, + [281] = {.lex_state = 8}, + [282] = {.lex_state = 22}, + [283] = {.lex_state = 22}, + [284] = {.lex_state = 22}, + [285] = {.lex_state = 22}, + [286] = {.lex_state = 14}, + [287] = {.lex_state = 13}, + [288] = {.lex_state = 13}, + [289] = {.lex_state = 390}, + [290] = {.lex_state = 390}, + [291] = {.lex_state = 390}, + [292] = {.lex_state = 9}, + [293] = {.lex_state = 7}, + [294] = {.lex_state = 7}, + [295] = {.lex_state = 390}, + [296] = {.lex_state = 390}, + [297] = {.lex_state = 390}, + [298] = {.lex_state = 390}, + [299] = {.lex_state = 390}, + [300] = {.lex_state = 390}, + [301] = {.lex_state = 390}, + [302] = {.lex_state = 390}, + [303] = {.lex_state = 390}, + [304] = {.lex_state = 390}, + [305] = {.lex_state = 390}, + [306] = {.lex_state = 390}, + [307] = {.lex_state = 390}, + [308] = {.lex_state = 390}, + [309] = {.lex_state = 390}, + [310] = {.lex_state = 390}, + [311] = {.lex_state = 390}, + [312] = {.lex_state = 390}, + [313] = {.lex_state = 390}, + [314] = {.lex_state = 390}, + [315] = {.lex_state = 390}, + [316] = {.lex_state = 390}, + [317] = {.lex_state = 390}, + [318] = {.lex_state = 390}, + [319] = {.lex_state = 390}, + [320] = {.lex_state = 390}, + [321] = {.lex_state = 390}, + [322] = {.lex_state = 390}, + [323] = {.lex_state = 390}, + [324] = {.lex_state = 390}, + [325] = {.lex_state = 390}, + [326] = {.lex_state = 390}, + [327] = {.lex_state = 390}, + [328] = {.lex_state = 390}, + [329] = {.lex_state = 14}, + [330] = {.lex_state = 390}, + [331] = {.lex_state = 390}, + [332] = {.lex_state = 390}, + [333] = {.lex_state = 390}, + [334] = {.lex_state = 390}, + [335] = {.lex_state = 390}, + [336] = {.lex_state = 390}, + [337] = {.lex_state = 390}, + [338] = {.lex_state = 390}, + [339] = {.lex_state = 390}, + [340] = {.lex_state = 390}, + [341] = {.lex_state = 390}, + [342] = {.lex_state = 390}, + [343] = {.lex_state = 390}, + [344] = {.lex_state = 390}, + [345] = {.lex_state = 390}, + [346] = {.lex_state = 390}, + [347] = {.lex_state = 390}, + [348] = {.lex_state = 22}, + [349] = {.lex_state = 390}, + [350] = {.lex_state = 390}, + [351] = {.lex_state = 390}, + [352] = {.lex_state = 390}, + [353] = {.lex_state = 390}, + [354] = {.lex_state = 390}, + [355] = {.lex_state = 390}, + [356] = {.lex_state = 390}, + [357] = {.lex_state = 390}, + [358] = {.lex_state = 390}, + [359] = {.lex_state = 390}, + [360] = {.lex_state = 390}, + [361] = {.lex_state = 390}, + [362] = {.lex_state = 390}, + [363] = {.lex_state = 390}, + [364] = {.lex_state = 390}, + [365] = {.lex_state = 390}, + [366] = {.lex_state = 390}, + [367] = {.lex_state = 390}, + [368] = {.lex_state = 390}, + [369] = {.lex_state = 390}, + [370] = {.lex_state = 390}, + [371] = {.lex_state = 390}, + [372] = {.lex_state = 390}, + [373] = {.lex_state = 390}, + [374] = {.lex_state = 390}, + [375] = {.lex_state = 390}, + [376] = {.lex_state = 390}, + [377] = {.lex_state = 390}, + [378] = {.lex_state = 390}, + [379] = {.lex_state = 15}, + [380] = {.lex_state = 390}, + [381] = {.lex_state = 390}, + [382] = {.lex_state = 5}, + [383] = {.lex_state = 390}, + [384] = {.lex_state = 5}, + [385] = {.lex_state = 390}, + [386] = {.lex_state = 390}, + [387] = {.lex_state = 10}, + [388] = {.lex_state = 10}, + [389] = {.lex_state = 15}, + [390] = {.lex_state = 390}, + [391] = {.lex_state = 11}, + [392] = {.lex_state = 390}, + [393] = {.lex_state = 11}, + [394] = {.lex_state = 390}, + [395] = {.lex_state = 12}, + [396] = {.lex_state = 12}, + [397] = {.lex_state = 390}, + [398] = {.lex_state = 16}, + [399] = {.lex_state = 16}, + [400] = {.lex_state = 390}, + [401] = {.lex_state = 9}, + [402] = {.lex_state = 390}, + [403] = {.lex_state = 10}, + [404] = {.lex_state = 7}, + [405] = {.lex_state = 6}, + [406] = {.lex_state = 6}, + [407] = {.lex_state = 10}, + [408] = {.lex_state = 5}, + [409] = {.lex_state = 14}, + [410] = {.lex_state = 5}, + [411] = {.lex_state = 14}, + [412] = {.lex_state = 11}, + [413] = {.lex_state = 11}, + [414] = {.lex_state = 15}, + [415] = {.lex_state = 12}, + [416] = {.lex_state = 13}, + [417] = {.lex_state = 12}, + [418] = {.lex_state = 8}, + [419] = {.lex_state = 16}, + [420] = {.lex_state = 8}, + [421] = {.lex_state = 7}, + [422] = {.lex_state = 16}, + [423] = {.lex_state = 13}, + [424] = {.lex_state = 9}, + [425] = {.lex_state = 15}, + [426] = {.lex_state = 9}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 0}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 0}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0}, + [437] = {.lex_state = 0}, + [438] = {.lex_state = 0}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 12}, + [441] = {.lex_state = 15}, [442] = {.lex_state = 6}, [443] = {.lex_state = 6}, [444] = {.lex_state = 6}, - [445] = {.lex_state = 8}, - [446] = {.lex_state = 6}, - [447] = {.lex_state = 6}, + [445] = {.lex_state = 15}, + [446] = {.lex_state = 8}, + [447] = {.lex_state = 8}, [448] = {.lex_state = 8}, - [449] = {.lex_state = 6}, - [450] = {.lex_state = 6}, - [451] = {.lex_state = 6}, - [452] = {.lex_state = 6}, + [449] = {.lex_state = 8}, + [450] = {.lex_state = 8}, + [451] = {.lex_state = 8}, + [452] = {.lex_state = 8}, [453] = {.lex_state = 6}, - [454] = {.lex_state = 6}, + [454] = {.lex_state = 8}, [455] = {.lex_state = 8}, - [456] = {.lex_state = 6}, - [457] = {.lex_state = 6}, + [456] = {.lex_state = 8}, + [457] = {.lex_state = 8}, [458] = {.lex_state = 8}, [459] = {.lex_state = 8}, - [460] = {.lex_state = 15}, - [461] = {.lex_state = 6}, - [462] = {.lex_state = 6}, - [463] = {.lex_state = 6}, - [464] = {.lex_state = 6}, + [460] = {.lex_state = 8}, + [461] = {.lex_state = 8}, + [462] = {.lex_state = 8}, + [463] = {.lex_state = 8}, + [464] = {.lex_state = 8}, [465] = {.lex_state = 8}, [466] = {.lex_state = 8}, [467] = {.lex_state = 8}, - [468] = {.lex_state = 15}, - [469] = {.lex_state = 6}, - [470] = {.lex_state = 6}, - [471] = {.lex_state = 6}, + [468] = {.lex_state = 8}, + [469] = {.lex_state = 8}, + [470] = {.lex_state = 8}, + [471] = {.lex_state = 8}, [472] = {.lex_state = 8}, [473] = {.lex_state = 8}, - [474] = {.lex_state = 6}, + [474] = {.lex_state = 8}, [475] = {.lex_state = 6}, - [476] = {.lex_state = 6}, + [476] = {.lex_state = 13}, [477] = {.lex_state = 8}, [478] = {.lex_state = 8}, - [479] = {.lex_state = 6}, + [479] = {.lex_state = 8}, [480] = {.lex_state = 8}, - [481] = {.lex_state = 8}, - [482] = {.lex_state = 8}, - [483] = {.lex_state = 8}, + [481] = {.lex_state = 6}, + [482] = {.lex_state = 6}, + [483] = {.lex_state = 13}, [484] = {.lex_state = 8}, [485] = {.lex_state = 8}, - [486] = {.lex_state = 6}, - [487] = {.lex_state = 12}, - [488] = {.lex_state = 5}, - [489] = {.lex_state = 5}, - [490] = {.lex_state = 5}, - [491] = {.lex_state = 5}, - [492] = {.lex_state = 15}, - [493] = {.lex_state = 5}, - [494] = {.lex_state = 5}, - [495] = {.lex_state = 5}, - [496] = {.lex_state = 5}, - [497] = {.lex_state = 5}, - [498] = {.lex_state = 5}, - [499] = {.lex_state = 5}, - [500] = {.lex_state = 15}, - [501] = {.lex_state = 5}, - [502] = {.lex_state = 5}, - [503] = {.lex_state = 5}, - [504] = {.lex_state = 5}, - [505] = {.lex_state = 5}, - [506] = {.lex_state = 9}, - [507] = {.lex_state = 9}, + [486] = {.lex_state = 8}, + [487] = {.lex_state = 8}, + [488] = {.lex_state = 6}, + [489] = {.lex_state = 8}, + [490] = {.lex_state = 8}, + [491] = {.lex_state = 8}, + [492] = {.lex_state = 6}, + [493] = {.lex_state = 8}, + [494] = {.lex_state = 6}, + [495] = {.lex_state = 7}, + [496] = {.lex_state = 6}, + [497] = {.lex_state = 6}, + [498] = {.lex_state = 6}, + [499] = {.lex_state = 6}, + [500] = {.lex_state = 9}, + [501] = {.lex_state = 6}, + [502] = {.lex_state = 6}, + [503] = {.lex_state = 6}, + [504] = {.lex_state = 6}, + [505] = {.lex_state = 16}, + [506] = {.lex_state = 6}, + [507] = {.lex_state = 6}, [508] = {.lex_state = 9}, - [509] = {.lex_state = 9}, - [510] = {.lex_state = 15}, - [511] = {.lex_state = 5}, - [512] = {.lex_state = 5}, - [513] = {.lex_state = 5}, - [514] = {.lex_state = 5}, - [515] = {.lex_state = 5}, - [516] = {.lex_state = 15}, - [517] = {.lex_state = 5}, - [518] = {.lex_state = 5}, - [519] = {.lex_state = 10}, - [520] = {.lex_state = 10}, - [521] = {.lex_state = 10}, - [522] = {.lex_state = 9}, - [523] = {.lex_state = 9}, - [524] = {.lex_state = 10}, - [525] = {.lex_state = 9}, - [526] = {.lex_state = 9}, - [527] = {.lex_state = 9}, - [528] = {.lex_state = 9}, - [529] = {.lex_state = 9}, - [530] = {.lex_state = 10}, - [531] = {.lex_state = 9}, - [532] = {.lex_state = 5}, - [533] = {.lex_state = 9}, - [534] = {.lex_state = 9}, - [535] = {.lex_state = 9}, - [536] = {.lex_state = 9}, - [537] = {.lex_state = 9}, - [538] = {.lex_state = 9}, - [539] = {.lex_state = 9}, - [540] = {.lex_state = 9}, - [541] = {.lex_state = 9}, - [542] = {.lex_state = 9}, - [543] = {.lex_state = 10}, - [544] = {.lex_state = 9}, - [545] = {.lex_state = 9}, - [546] = {.lex_state = 9}, - [547] = {.lex_state = 9}, - [548] = {.lex_state = 9}, + [509] = {.lex_state = 6}, + [510] = {.lex_state = 6}, + [511] = {.lex_state = 6}, + [512] = {.lex_state = 10}, + [513] = {.lex_state = 6}, + [514] = {.lex_state = 6}, + [515] = {.lex_state = 6}, + [516] = {.lex_state = 10}, + [517] = {.lex_state = 6}, + [518] = {.lex_state = 6}, + [519] = {.lex_state = 6}, + [520] = {.lex_state = 6}, + [521] = {.lex_state = 6}, + [522] = {.lex_state = 6}, + [523] = {.lex_state = 6}, + [524] = {.lex_state = 16}, + [525] = {.lex_state = 6}, + [526] = {.lex_state = 5}, + [527] = {.lex_state = 6}, + [528] = {.lex_state = 6}, + [529] = {.lex_state = 6}, + [530] = {.lex_state = 5}, + [531] = {.lex_state = 14}, + [532] = {.lex_state = 6}, + [533] = {.lex_state = 11}, + [534] = {.lex_state = 6}, + [535] = {.lex_state = 6}, + [536] = {.lex_state = 14}, + [537] = {.lex_state = 11}, + [538] = {.lex_state = 6}, + [539] = {.lex_state = 8}, + [540] = {.lex_state = 6}, + [541] = {.lex_state = 8}, + [542] = {.lex_state = 8}, + [543] = {.lex_state = 8}, + [544] = {.lex_state = 12}, + [545] = {.lex_state = 6}, + [546] = {.lex_state = 6}, + [547] = {.lex_state = 7}, + [548] = {.lex_state = 14}, [549] = {.lex_state = 9}, - [550] = {.lex_state = 12}, - [551] = {.lex_state = 12}, - [552] = {.lex_state = 12}, - [553] = {.lex_state = 12}, - [554] = {.lex_state = 10}, + [550] = {.lex_state = 9}, + [551] = {.lex_state = 9}, + [552] = {.lex_state = 9}, + [553] = {.lex_state = 5}, + [554] = {.lex_state = 16}, [555] = {.lex_state = 9}, [556] = {.lex_state = 9}, [557] = {.lex_state = 9}, [558] = {.lex_state = 9}, - [559] = {.lex_state = 10}, - [560] = {.lex_state = 10}, - [561] = {.lex_state = 10}, - [562] = {.lex_state = 9}, - [563] = {.lex_state = 9}, + [559] = {.lex_state = 5}, + [560] = {.lex_state = 5}, + [561] = {.lex_state = 5}, + [562] = {.lex_state = 5}, + [563] = {.lex_state = 5}, [564] = {.lex_state = 9}, [565] = {.lex_state = 9}, - [566] = {.lex_state = 10}, - [567] = {.lex_state = 5}, - [568] = {.lex_state = 10}, - [569] = {.lex_state = 12}, - [570] = {.lex_state = 12}, - [571] = {.lex_state = 9}, - [572] = {.lex_state = 9}, + [566] = {.lex_state = 9}, + [567] = {.lex_state = 9}, + [568] = {.lex_state = 5}, + [569] = {.lex_state = 5}, + [570] = {.lex_state = 5}, + [571] = {.lex_state = 5}, + [572] = {.lex_state = 5}, [573] = {.lex_state = 9}, - [574] = {.lex_state = 9}, - [575] = {.lex_state = 12}, - [576] = {.lex_state = 12}, - [577] = {.lex_state = 12}, - [578] = {.lex_state = 12}, - [579] = {.lex_state = 12}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 12}, - [582] = {.lex_state = 9}, - [583] = {.lex_state = 10}, - [584] = {.lex_state = 12}, - [585] = {.lex_state = 12}, - [586] = {.lex_state = 12}, - [587] = {.lex_state = 12}, - [588] = {.lex_state = 12}, - [589] = {.lex_state = 12}, - [590] = {.lex_state = 12}, - [591] = {.lex_state = 12}, - [592] = {.lex_state = 12}, - [593] = {.lex_state = 9}, - [594] = {.lex_state = 12}, - [595] = {.lex_state = 12}, - [596] = {.lex_state = 12}, - [597] = {.lex_state = 12}, - [598] = {.lex_state = 12}, - [599] = {.lex_state = 12}, - [600] = {.lex_state = 14}, - [601] = {.lex_state = 14}, + [574] = {.lex_state = 5}, + [575] = {.lex_state = 5}, + [576] = {.lex_state = 5}, + [577] = {.lex_state = 5}, + [578] = {.lex_state = 5}, + [579] = {.lex_state = 5}, + [580] = {.lex_state = 5}, + [581] = {.lex_state = 5}, + [582] = {.lex_state = 5}, + [583] = {.lex_state = 16}, + [584] = {.lex_state = 5}, + [585] = {.lex_state = 5}, + [586] = {.lex_state = 5}, + [587] = {.lex_state = 5}, + [588] = {.lex_state = 14}, + [589] = {.lex_state = 14}, + [590] = {.lex_state = 14}, + [591] = {.lex_state = 14}, + [592] = {.lex_state = 9}, + [593] = {.lex_state = 5}, + [594] = {.lex_state = 5}, + [595] = {.lex_state = 10}, + [596] = {.lex_state = 10}, + [597] = {.lex_state = 10}, + [598] = {.lex_state = 10}, + [599] = {.lex_state = 9}, + [600] = {.lex_state = 10}, + [601] = {.lex_state = 10}, [602] = {.lex_state = 14}, [603] = {.lex_state = 14}, - [604] = {.lex_state = 9}, - [605] = {.lex_state = 12}, - [606] = {.lex_state = 12}, - [607] = {.lex_state = 12}, - [608] = {.lex_state = 12}, - [609] = {.lex_state = 10}, - [610] = {.lex_state = 10}, - [611] = {.lex_state = 9}, - [612] = {.lex_state = 12}, - [613] = {.lex_state = 12}, - [614] = {.lex_state = 12}, - [615] = {.lex_state = 12}, - [616] = {.lex_state = 10}, - [617] = {.lex_state = 10}, - [618] = {.lex_state = 10}, + [604] = {.lex_state = 5}, + [605] = {.lex_state = 10}, + [606] = {.lex_state = 10}, + [607] = {.lex_state = 10}, + [608] = {.lex_state = 14}, + [609] = {.lex_state = 14}, + [610] = {.lex_state = 14}, + [611] = {.lex_state = 14}, + [612] = {.lex_state = 14}, + [613] = {.lex_state = 10}, + [614] = {.lex_state = 14}, + [615] = {.lex_state = 10}, + [616] = {.lex_state = 14}, + [617] = {.lex_state = 14}, + [618] = {.lex_state = 14}, [619] = {.lex_state = 14}, [620] = {.lex_state = 14}, - [621] = {.lex_state = 12}, - [622] = {.lex_state = 12}, - [623] = {.lex_state = 12}, - [624] = {.lex_state = 12}, + [621] = {.lex_state = 14}, + [622] = {.lex_state = 14}, + [623] = {.lex_state = 14}, + [624] = {.lex_state = 14}, [625] = {.lex_state = 14}, [626] = {.lex_state = 14}, [627] = {.lex_state = 14}, [628] = {.lex_state = 14}, [629] = {.lex_state = 14}, - [630] = {.lex_state = 10}, + [630] = {.lex_state = 14}, [631] = {.lex_state = 14}, - [632] = {.lex_state = 12}, - [633] = {.lex_state = 14}, - [634] = {.lex_state = 14}, - [635] = {.lex_state = 14}, - [636] = {.lex_state = 14}, + [632] = {.lex_state = 15}, + [633] = {.lex_state = 15}, + [634] = {.lex_state = 15}, + [635] = {.lex_state = 15}, + [636] = {.lex_state = 10}, [637] = {.lex_state = 14}, [638] = {.lex_state = 14}, [639] = {.lex_state = 14}, [640] = {.lex_state = 14}, - [641] = {.lex_state = 14}, - [642] = {.lex_state = 14}, - [643] = {.lex_state = 12}, + [641] = {.lex_state = 5}, + [642] = {.lex_state = 10}, + [643] = {.lex_state = 10}, [644] = {.lex_state = 14}, [645] = {.lex_state = 14}, [646] = {.lex_state = 14}, [647] = {.lex_state = 14}, - [648] = {.lex_state = 14}, - [649] = {.lex_state = 14}, + [648] = {.lex_state = 10}, + [649] = {.lex_state = 10}, [650] = {.lex_state = 10}, - [651] = {.lex_state = 5}, - [652] = {.lex_state = 10}, - [653] = {.lex_state = 10}, - [654] = {.lex_state = 12}, + [651] = {.lex_state = 10}, + [652] = {.lex_state = 15}, + [653] = {.lex_state = 15}, + [654] = {.lex_state = 14}, [655] = {.lex_state = 14}, [656] = {.lex_state = 14}, [657] = {.lex_state = 14}, - [658] = {.lex_state = 14}, - [659] = {.lex_state = 10}, - [660] = {.lex_state = 10}, - [661] = {.lex_state = 12}, - [662] = {.lex_state = 14}, - [663] = {.lex_state = 14}, - [664] = {.lex_state = 14}, + [658] = {.lex_state = 15}, + [659] = {.lex_state = 15}, + [660] = {.lex_state = 15}, + [661] = {.lex_state = 15}, + [662] = {.lex_state = 15}, + [663] = {.lex_state = 10}, + [664] = {.lex_state = 15}, [665] = {.lex_state = 14}, - [666] = {.lex_state = 10}, - [667] = {.lex_state = 10}, - [668] = {.lex_state = 7}, - [669] = {.lex_state = 7}, - [670] = {.lex_state = 7}, - [671] = {.lex_state = 7}, - [672] = {.lex_state = 14}, - [673] = {.lex_state = 14}, - [674] = {.lex_state = 14}, - [675] = {.lex_state = 14}, + [666] = {.lex_state = 15}, + [667] = {.lex_state = 15}, + [668] = {.lex_state = 15}, + [669] = {.lex_state = 15}, + [670] = {.lex_state = 15}, + [671] = {.lex_state = 15}, + [672] = {.lex_state = 15}, + [673] = {.lex_state = 15}, + [674] = {.lex_state = 15}, + [675] = {.lex_state = 15}, [676] = {.lex_state = 10}, - [677] = {.lex_state = 10}, - [678] = {.lex_state = 10}, - [679] = {.lex_state = 10}, - [680] = {.lex_state = 10}, - [681] = {.lex_state = 14}, - [682] = {.lex_state = 10}, - [683] = {.lex_state = 10}, - [684] = {.lex_state = 10}, - [685] = {.lex_state = 7}, - [686] = {.lex_state = 7}, - [687] = {.lex_state = 10}, - [688] = {.lex_state = 14}, - [689] = {.lex_state = 10}, - [690] = {.lex_state = 10}, - [691] = {.lex_state = 10}, - [692] = {.lex_state = 7}, - [693] = {.lex_state = 7}, - [694] = {.lex_state = 7}, - [695] = {.lex_state = 13}, - [696] = {.lex_state = 13}, - [697] = {.lex_state = 13}, - [698] = {.lex_state = 13}, - [699] = {.lex_state = 14}, - [700] = {.lex_state = 7}, - [701] = {.lex_state = 7}, - [702] = {.lex_state = 7}, - [703] = {.lex_state = 10}, - [704] = {.lex_state = 7}, - [705] = {.lex_state = 14}, - [706] = {.lex_state = 7}, - [707] = {.lex_state = 7}, - [708] = {.lex_state = 7}, - [709] = {.lex_state = 7}, - [710] = {.lex_state = 7}, - [711] = {.lex_state = 7}, - [712] = {.lex_state = 7}, + [677] = {.lex_state = 15}, + [678] = {.lex_state = 15}, + [679] = {.lex_state = 15}, + [680] = {.lex_state = 15}, + [681] = {.lex_state = 15}, + [682] = {.lex_state = 15}, + [683] = {.lex_state = 13}, + [684] = {.lex_state = 13}, + [685] = {.lex_state = 13}, + [686] = {.lex_state = 13}, + [687] = {.lex_state = 14}, + [688] = {.lex_state = 15}, + [689] = {.lex_state = 15}, + [690] = {.lex_state = 15}, + [691] = {.lex_state = 15}, + [692] = {.lex_state = 10}, + [693] = {.lex_state = 10}, + [694] = {.lex_state = 14}, + [695] = {.lex_state = 15}, + [696] = {.lex_state = 15}, + [697] = {.lex_state = 15}, + [698] = {.lex_state = 15}, + [699] = {.lex_state = 5}, + [700] = {.lex_state = 10}, + [701] = {.lex_state = 10}, + [702] = {.lex_state = 10}, + [703] = {.lex_state = 13}, + [704] = {.lex_state = 13}, + [705] = {.lex_state = 15}, + [706] = {.lex_state = 15}, + [707] = {.lex_state = 15}, + [708] = {.lex_state = 15}, + [709] = {.lex_state = 13}, + [710] = {.lex_state = 13}, + [711] = {.lex_state = 13}, + [712] = {.lex_state = 13}, [713] = {.lex_state = 13}, - [714] = {.lex_state = 13}, - [715] = {.lex_state = 7}, - [716] = {.lex_state = 7}, - [717] = {.lex_state = 10}, - [718] = {.lex_state = 7}, + [714] = {.lex_state = 10}, + [715] = {.lex_state = 13}, + [716] = {.lex_state = 15}, + [717] = {.lex_state = 13}, + [718] = {.lex_state = 13}, [719] = {.lex_state = 13}, [720] = {.lex_state = 13}, [721] = {.lex_state = 13}, [722] = {.lex_state = 13}, [723] = {.lex_state = 13}, - [724] = {.lex_state = 7}, + [724] = {.lex_state = 13}, [725] = {.lex_state = 13}, - [726] = {.lex_state = 7}, - [727] = {.lex_state = 13}, + [726] = {.lex_state = 13}, + [727] = {.lex_state = 15}, [728] = {.lex_state = 13}, [729] = {.lex_state = 13}, [730] = {.lex_state = 13}, [731] = {.lex_state = 13}, [732] = {.lex_state = 13}, [733] = {.lex_state = 13}, - [734] = {.lex_state = 13}, - [735] = {.lex_state = 13}, - [736] = {.lex_state = 13}, - [737] = {.lex_state = 7}, - [738] = {.lex_state = 13}, + [734] = {.lex_state = 10}, + [735] = {.lex_state = 10}, + [736] = {.lex_state = 11}, + [737] = {.lex_state = 11}, + [738] = {.lex_state = 15}, [739] = {.lex_state = 13}, [740] = {.lex_state = 13}, [741] = {.lex_state = 13}, [742] = {.lex_state = 13}, - [743] = {.lex_state = 13}, - [744] = {.lex_state = 7}, - [745] = {.lex_state = 13}, + [743] = {.lex_state = 11}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 15}, [746] = {.lex_state = 13}, [747] = {.lex_state = 13}, [748] = {.lex_state = 13}, - [749] = {.lex_state = 7}, - [750] = {.lex_state = 11}, - [751] = {.lex_state = 13}, - [752] = {.lex_state = 13}, - [753] = {.lex_state = 13}, + [749] = {.lex_state = 13}, + [750] = {.lex_state = 10}, + [751] = {.lex_state = 10}, + [752] = {.lex_state = 10}, + [753] = {.lex_state = 10}, [754] = {.lex_state = 13}, - [755] = {.lex_state = 11}, + [755] = {.lex_state = 13}, [756] = {.lex_state = 13}, [757] = {.lex_state = 13}, - [758] = {.lex_state = 13}, - [759] = {.lex_state = 13}, - [760] = {.lex_state = 13}, - [761] = {.lex_state = 13}, + [758] = {.lex_state = 10}, + [759] = {.lex_state = 10}, + [760] = {.lex_state = 10}, + [761] = {.lex_state = 10}, [762] = {.lex_state = 13}, [763] = {.lex_state = 11}, - [764] = {.lex_state = 13}, - [765] = {.lex_state = 11}, + [764] = {.lex_state = 11}, + [765] = {.lex_state = 10}, [766] = {.lex_state = 10}, - [767] = {.lex_state = 7}, - [768] = {.lex_state = 7}, - [769] = {.lex_state = 7}, - [770] = {.lex_state = 7}, - [771] = {.lex_state = 10}, - [772] = {.lex_state = 7}, - [773] = {.lex_state = 7}, - [774] = {.lex_state = 7}, - [775] = {.lex_state = 7}, - [776] = {.lex_state = 5}, - [777] = {.lex_state = 5}, - [778] = {.lex_state = 11}, - [779] = {.lex_state = 11}, + [767] = {.lex_state = 10}, + [768] = {.lex_state = 10}, + [769] = {.lex_state = 11}, + [770] = {.lex_state = 11}, + [771] = {.lex_state = 11}, + [772] = {.lex_state = 13}, + [773] = {.lex_state = 11}, + [774] = {.lex_state = 11}, + [775] = {.lex_state = 11}, + [776] = {.lex_state = 10}, + [777] = {.lex_state = 11}, + [778] = {.lex_state = 7}, + [779] = {.lex_state = 7}, [780] = {.lex_state = 7}, [781] = {.lex_state = 7}, - [782] = {.lex_state = 7}, - [783] = {.lex_state = 7}, + [782] = {.lex_state = 13}, + [783] = {.lex_state = 11}, [784] = {.lex_state = 11}, [785] = {.lex_state = 11}, [786] = {.lex_state = 11}, [787] = {.lex_state = 11}, [788] = {.lex_state = 11}, - [789] = {.lex_state = 5}, + [789] = {.lex_state = 13}, [790] = {.lex_state = 11}, - [791] = {.lex_state = 7}, + [791] = {.lex_state = 11}, [792] = {.lex_state = 11}, - [793] = {.lex_state = 11}, + [793] = {.lex_state = 10}, [794] = {.lex_state = 11}, [795] = {.lex_state = 11}, [796] = {.lex_state = 11}, - [797] = {.lex_state = 11}, - [798] = {.lex_state = 11}, + [797] = {.lex_state = 7}, + [798] = {.lex_state = 7}, [799] = {.lex_state = 11}, [800] = {.lex_state = 11}, [801] = {.lex_state = 11}, - [802] = {.lex_state = 7}, - [803] = {.lex_state = 11}, - [804] = {.lex_state = 11}, - [805] = {.lex_state = 11}, - [806] = {.lex_state = 11}, - [807] = {.lex_state = 11}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 15}, - [810] = {.lex_state = 15}, - [811] = {.lex_state = 15}, - [812] = {.lex_state = 15}, + [802] = {.lex_state = 12}, + [803] = {.lex_state = 7}, + [804] = {.lex_state = 7}, + [805] = {.lex_state = 7}, + [806] = {.lex_state = 7}, + [807] = {.lex_state = 7}, + [808] = {.lex_state = 12}, + [809] = {.lex_state = 7}, + [810] = {.lex_state = 12}, + [811] = {.lex_state = 7}, + [812] = {.lex_state = 7}, [813] = {.lex_state = 7}, - [814] = {.lex_state = 11}, - [815] = {.lex_state = 11}, - [816] = {.lex_state = 11}, - [817] = {.lex_state = 11}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 5}, + [814] = {.lex_state = 7}, + [815] = {.lex_state = 7}, + [816] = {.lex_state = 7}, + [817] = {.lex_state = 7}, + [818] = {.lex_state = 7}, + [819] = {.lex_state = 7}, [820] = {.lex_state = 7}, - [821] = {.lex_state = 11}, - [822] = {.lex_state = 11}, - [823] = {.lex_state = 11}, - [824] = {.lex_state = 11}, - [825] = {.lex_state = 5}, - [826] = {.lex_state = 5}, - [827] = {.lex_state = 5}, - [828] = {.lex_state = 5}, - [829] = {.lex_state = 15}, - [830] = {.lex_state = 15}, - [831] = {.lex_state = 11}, - [832] = {.lex_state = 11}, + [821] = {.lex_state = 12}, + [822] = {.lex_state = 7}, + [823] = {.lex_state = 7}, + [824] = {.lex_state = 7}, + [825] = {.lex_state = 7}, + [826] = {.lex_state = 7}, + [827] = {.lex_state = 7}, + [828] = {.lex_state = 10}, + [829] = {.lex_state = 7}, + [830] = {.lex_state = 7}, + [831] = {.lex_state = 7}, + [832] = {.lex_state = 7}, [833] = {.lex_state = 11}, [834] = {.lex_state = 11}, - [835] = {.lex_state = 15}, - [836] = {.lex_state = 15}, - [837] = {.lex_state = 15}, - [838] = {.lex_state = 15}, - [839] = {.lex_state = 15}, - [840] = {.lex_state = 15}, - [841] = {.lex_state = 11}, - [842] = {.lex_state = 15}, - [843] = {.lex_state = 15}, - [844] = {.lex_state = 15}, - [845] = {.lex_state = 15}, - [846] = {.lex_state = 15}, - [847] = {.lex_state = 15}, - [848] = {.lex_state = 15}, - [849] = {.lex_state = 15}, - [850] = {.lex_state = 15}, - [851] = {.lex_state = 15}, + [835] = {.lex_state = 7}, + [836] = {.lex_state = 7}, + [837] = {.lex_state = 7}, + [838] = {.lex_state = 7}, + [839] = {.lex_state = 11}, + [840] = {.lex_state = 7}, + [841] = {.lex_state = 7}, + [842] = {.lex_state = 7}, + [843] = {.lex_state = 7}, + [844] = {.lex_state = 7}, + [845] = {.lex_state = 7}, + [846] = {.lex_state = 7}, + [847] = {.lex_state = 11}, + [848] = {.lex_state = 7}, + [849] = {.lex_state = 10}, + [850] = {.lex_state = 11}, + [851] = {.lex_state = 11}, [852] = {.lex_state = 11}, - [853] = {.lex_state = 15}, - [854] = {.lex_state = 15}, - [855] = {.lex_state = 15}, - [856] = {.lex_state = 15}, - [857] = {.lex_state = 15}, - [858] = {.lex_state = 15}, - [859] = {.lex_state = 5}, - [860] = {.lex_state = 5}, - [861] = {.lex_state = 5}, - [862] = {.lex_state = 5}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 15}, - [865] = {.lex_state = 15}, - [866] = {.lex_state = 15}, - [867] = {.lex_state = 15}, - [868] = {.lex_state = 5}, - [869] = {.lex_state = 11}, - [870] = {.lex_state = 15}, - [871] = {.lex_state = 15}, - [872] = {.lex_state = 15}, - [873] = {.lex_state = 15}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 5}, - [877] = {.lex_state = 15}, - [878] = {.lex_state = 15}, - [879] = {.lex_state = 15}, - [880] = {.lex_state = 15}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 10}, - [883] = {.lex_state = 3}, - [884] = {.lex_state = 3}, - [885] = {.lex_state = 3}, - [886] = {.lex_state = 3}, - [887] = {.lex_state = 3}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 3}, - [890] = {.lex_state = 3}, - [891] = {.lex_state = 3}, - [892] = {.lex_state = 3}, - [893] = {.lex_state = 3}, - [894] = {.lex_state = 3}, - [895] = {.lex_state = 3}, - [896] = {.lex_state = 3}, - [897] = {.lex_state = 3}, - [898] = {.lex_state = 3}, - [899] = {.lex_state = 3}, - [900] = {.lex_state = 3}, - [901] = {.lex_state = 3}, - [902] = {.lex_state = 3}, - [903] = {.lex_state = 3}, - [904] = {.lex_state = 3}, - [905] = {.lex_state = 3}, - [906] = {.lex_state = 3}, - [907] = {.lex_state = 3}, - [908] = {.lex_state = 3}, - [909] = {.lex_state = 3}, - [910] = {.lex_state = 3}, - [911] = {.lex_state = 3}, - [912] = {.lex_state = 3}, - [913] = {.lex_state = 3}, - [914] = {.lex_state = 3}, - [915] = {.lex_state = 3}, - [916] = {.lex_state = 3}, - [917] = {.lex_state = 3}, - [918] = {.lex_state = 3}, - [919] = {.lex_state = 3}, - [920] = {.lex_state = 3}, - [921] = {.lex_state = 3}, - [922] = {.lex_state = 3}, - [923] = {.lex_state = 3}, - [924] = {.lex_state = 3}, - [925] = {.lex_state = 3}, - [926] = {.lex_state = 3}, - [927] = {.lex_state = 3}, - [928] = {.lex_state = 3}, - [929] = {.lex_state = 3}, - [930] = {.lex_state = 3}, - [931] = {.lex_state = 3}, - [932] = {.lex_state = 3}, - [933] = {.lex_state = 3}, - [934] = {.lex_state = 3}, - [935] = {.lex_state = 3}, - [936] = {.lex_state = 3}, - [937] = {.lex_state = 3}, - [938] = {.lex_state = 3}, - [939] = {.lex_state = 3}, - [940] = {.lex_state = 3}, - [941] = {.lex_state = 3}, - [942] = {.lex_state = 3}, - [943] = {.lex_state = 3}, - [944] = {.lex_state = 3}, - [945] = {.lex_state = 3}, - [946] = {.lex_state = 3}, - [947] = {.lex_state = 3}, - [948] = {.lex_state = 3}, - [949] = {.lex_state = 3}, - [950] = {.lex_state = 3}, - [951] = {.lex_state = 3}, - [952] = {.lex_state = 3}, - [953] = {.lex_state = 3}, - [954] = {.lex_state = 3}, - [955] = {.lex_state = 3}, - [956] = {.lex_state = 3}, - [957] = {.lex_state = 3}, - [958] = {.lex_state = 3}, - [959] = {.lex_state = 3}, - [960] = {.lex_state = 3}, - [961] = {.lex_state = 3}, - [962] = {.lex_state = 3}, - [963] = {.lex_state = 3}, - [964] = {.lex_state = 3}, - [965] = {.lex_state = 3}, - [966] = {.lex_state = 3}, - [967] = {.lex_state = 3}, - [968] = {.lex_state = 3}, - [969] = {.lex_state = 3}, - [970] = {.lex_state = 3}, - [971] = {.lex_state = 3}, - [972] = {.lex_state = 3}, - [973] = {.lex_state = 3}, - [974] = {.lex_state = 3}, - [975] = {.lex_state = 3}, - [976] = {.lex_state = 3}, - [977] = {.lex_state = 3}, - [978] = {.lex_state = 3}, - [979] = {.lex_state = 3}, - [980] = {.lex_state = 3}, - [981] = {.lex_state = 3}, - [982] = {.lex_state = 3}, - [983] = {.lex_state = 3}, - [984] = {.lex_state = 3}, - [985] = {.lex_state = 3}, - [986] = {.lex_state = 3}, - [987] = {.lex_state = 3}, + [853] = {.lex_state = 11}, + [854] = {.lex_state = 12}, + [855] = {.lex_state = 12}, + [856] = {.lex_state = 11}, + [857] = {.lex_state = 11}, + [858] = {.lex_state = 11}, + [859] = {.lex_state = 11}, + [860] = {.lex_state = 12}, + [861] = {.lex_state = 12}, + [862] = {.lex_state = 12}, + [863] = {.lex_state = 12}, + [864] = {.lex_state = 12}, + [865] = {.lex_state = 5}, + [866] = {.lex_state = 12}, + [867] = {.lex_state = 11}, + [868] = {.lex_state = 12}, + [869] = {.lex_state = 12}, + [870] = {.lex_state = 12}, + [871] = {.lex_state = 12}, + [872] = {.lex_state = 12}, + [873] = {.lex_state = 12}, + [874] = {.lex_state = 12}, + [875] = {.lex_state = 12}, + [876] = {.lex_state = 12}, + [877] = {.lex_state = 12}, + [878] = {.lex_state = 11}, + [879] = {.lex_state = 12}, + [880] = {.lex_state = 12}, + [881] = {.lex_state = 12}, + [882] = {.lex_state = 12}, + [883] = {.lex_state = 12}, + [884] = {.lex_state = 12}, + [885] = {.lex_state = 16}, + [886] = {.lex_state = 16}, + [887] = {.lex_state = 16}, + [888] = {.lex_state = 16}, + [889] = {.lex_state = 11}, + [890] = {.lex_state = 12}, + [891] = {.lex_state = 12}, + [892] = {.lex_state = 12}, + [893] = {.lex_state = 12}, + [894] = {.lex_state = 5}, + [895] = {.lex_state = 5}, + [896] = {.lex_state = 11}, + [897] = {.lex_state = 12}, + [898] = {.lex_state = 12}, + [899] = {.lex_state = 12}, + [900] = {.lex_state = 12}, + [901] = {.lex_state = 5}, + [902] = {.lex_state = 5}, + [903] = {.lex_state = 5}, + [904] = {.lex_state = 5}, + [905] = {.lex_state = 16}, + [906] = {.lex_state = 16}, + [907] = {.lex_state = 12}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 12}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, + [915] = {.lex_state = 16}, + [916] = {.lex_state = 5}, + [917] = {.lex_state = 16}, + [918] = {.lex_state = 12}, + [919] = {.lex_state = 16}, + [920] = {.lex_state = 16}, + [921] = {.lex_state = 16}, + [922] = {.lex_state = 16}, + [923] = {.lex_state = 16}, + [924] = {.lex_state = 16}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 16}, + [927] = {.lex_state = 16}, + [928] = {.lex_state = 16}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 16}, + [931] = {.lex_state = 16}, + [932] = {.lex_state = 16}, + [933] = {.lex_state = 16}, + [934] = {.lex_state = 16}, + [935] = {.lex_state = 16}, + [936] = {.lex_state = 9}, + [937] = {.lex_state = 9}, + [938] = {.lex_state = 9}, + [939] = {.lex_state = 9}, + [940] = {.lex_state = 12}, + [941] = {.lex_state = 16}, + [942] = {.lex_state = 16}, + [943] = {.lex_state = 16}, + [944] = {.lex_state = 16}, + [945] = {.lex_state = 5}, + [946] = {.lex_state = 12}, + [947] = {.lex_state = 16}, + [948] = {.lex_state = 16}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 16}, + [951] = {.lex_state = 5}, + [952] = {.lex_state = 5}, + [953] = {.lex_state = 5}, + [954] = {.lex_state = 5}, + [955] = {.lex_state = 9}, + [956] = {.lex_state = 9}, + [957] = {.lex_state = 16}, + [958] = {.lex_state = 16}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 16}, + [961] = {.lex_state = 9}, + [962] = {.lex_state = 9}, + [963] = {.lex_state = 9}, + [964] = {.lex_state = 9}, + [965] = {.lex_state = 9}, + [966] = {.lex_state = 5}, + [967] = {.lex_state = 9}, + [968] = {.lex_state = 16}, + [969] = {.lex_state = 9}, + [970] = {.lex_state = 9}, + [971] = {.lex_state = 9}, + [972] = {.lex_state = 9}, + [973] = {.lex_state = 9}, + [974] = {.lex_state = 9}, + [975] = {.lex_state = 9}, + [976] = {.lex_state = 9}, + [977] = {.lex_state = 9}, + [978] = {.lex_state = 9}, + [979] = {.lex_state = 16}, + [980] = {.lex_state = 9}, + [981] = {.lex_state = 9}, + [982] = {.lex_state = 9}, + [983] = {.lex_state = 9}, + [984] = {.lex_state = 9}, + [985] = {.lex_state = 9}, + [986] = {.lex_state = 5}, + [987] = {.lex_state = 9}, [988] = {.lex_state = 3}, [989] = {.lex_state = 3}, [990] = {.lex_state = 3}, @@ -10119,123 +10905,123 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1004] = {.lex_state = 3}, [1005] = {.lex_state = 3}, [1006] = {.lex_state = 3}, - [1007] = {.lex_state = 22}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 3}, + [1009] = {.lex_state = 3}, + [1010] = {.lex_state = 3}, + [1011] = {.lex_state = 3}, + [1012] = {.lex_state = 3}, + [1013] = {.lex_state = 3}, + [1014] = {.lex_state = 3}, + [1015] = {.lex_state = 3}, + [1016] = {.lex_state = 3}, + [1017] = {.lex_state = 3}, + [1018] = {.lex_state = 3}, + [1019] = {.lex_state = 3}, + [1020] = {.lex_state = 3}, + [1021] = {.lex_state = 3}, + [1022] = {.lex_state = 3}, + [1023] = {.lex_state = 3}, + [1024] = {.lex_state = 3}, + [1025] = {.lex_state = 3}, + [1026] = {.lex_state = 3}, + [1027] = {.lex_state = 3}, + [1028] = {.lex_state = 3}, + [1029] = {.lex_state = 3}, + [1030] = {.lex_state = 3}, + [1031] = {.lex_state = 3}, + [1032] = {.lex_state = 3}, + [1033] = {.lex_state = 3}, + [1034] = {.lex_state = 3}, + [1035] = {.lex_state = 3}, + [1036] = {.lex_state = 3}, + [1037] = {.lex_state = 3}, + [1038] = {.lex_state = 3}, + [1039] = {.lex_state = 3}, + [1040] = {.lex_state = 3}, + [1041] = {.lex_state = 3}, + [1042] = {.lex_state = 3}, + [1043] = {.lex_state = 3}, + [1044] = {.lex_state = 3}, + [1045] = {.lex_state = 3}, + [1046] = {.lex_state = 3}, + [1047] = {.lex_state = 3}, + [1048] = {.lex_state = 3}, + [1049] = {.lex_state = 3}, + [1050] = {.lex_state = 3}, + [1051] = {.lex_state = 3}, + [1052] = {.lex_state = 3}, + [1053] = {.lex_state = 3}, + [1054] = {.lex_state = 3}, + [1055] = {.lex_state = 3}, + [1056] = {.lex_state = 3}, + [1057] = {.lex_state = 3}, + [1058] = {.lex_state = 3}, + [1059] = {.lex_state = 3}, + [1060] = {.lex_state = 3}, + [1061] = {.lex_state = 3}, + [1062] = {.lex_state = 3}, + [1063] = {.lex_state = 3}, + [1064] = {.lex_state = 3}, + [1065] = {.lex_state = 3}, + [1066] = {.lex_state = 3}, + [1067] = {.lex_state = 3}, + [1068] = {.lex_state = 3}, + [1069] = {.lex_state = 3}, + [1070] = {.lex_state = 3}, + [1071] = {.lex_state = 3}, + [1072] = {.lex_state = 3}, + [1073] = {.lex_state = 3}, + [1074] = {.lex_state = 3}, + [1075] = {.lex_state = 3}, + [1076] = {.lex_state = 3}, + [1077] = {.lex_state = 3}, + [1078] = {.lex_state = 3}, + [1079] = {.lex_state = 3}, + [1080] = {.lex_state = 3}, + [1081] = {.lex_state = 3}, + [1082] = {.lex_state = 3}, + [1083] = {.lex_state = 3}, + [1084] = {.lex_state = 3}, + [1085] = {.lex_state = 3}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 3}, + [1088] = {.lex_state = 3}, + [1089] = {.lex_state = 3}, + [1090] = {.lex_state = 3}, + [1091] = {.lex_state = 3}, + [1092] = {.lex_state = 3}, + [1093] = {.lex_state = 3}, + [1094] = {.lex_state = 3}, + [1095] = {.lex_state = 3}, + [1096] = {.lex_state = 3}, + [1097] = {.lex_state = 3}, + [1098] = {.lex_state = 3}, + [1099] = {.lex_state = 3}, + [1100] = {.lex_state = 3}, + [1101] = {.lex_state = 3}, + [1102] = {.lex_state = 3}, + [1103] = {.lex_state = 3}, + [1104] = {.lex_state = 3}, + [1105] = {.lex_state = 3}, + [1106] = {.lex_state = 3}, + [1107] = {.lex_state = 3}, + [1108] = {.lex_state = 3}, + [1109] = {.lex_state = 3}, + [1110] = {.lex_state = 3}, + [1111] = {.lex_state = 3}, + [1112] = {.lex_state = 3}, + [1113] = {.lex_state = 3}, + [1114] = {.lex_state = 3}, + [1115] = {.lex_state = 3}, + [1116] = {.lex_state = 3}, + [1117] = {.lex_state = 3}, + [1118] = {.lex_state = 3}, + [1119] = {.lex_state = 3}, + [1120] = {.lex_state = 3}, + [1121] = {.lex_state = 3}, + [1122] = {.lex_state = 3}, + [1123] = {.lex_state = 23}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, @@ -10265,9 +11051,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 22}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 22}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, @@ -10282,13 +11068,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 22}, + [1170] = {.lex_state = 0}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 22}, + [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 22}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, @@ -10299,33 +11085,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1184] = {.lex_state = 0}, [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 18}, + [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 18}, - [1191] = {.lex_state = 18}, - [1192] = {.lex_state = 18}, - [1193] = {.lex_state = 18}, - [1194] = {.lex_state = 18}, - [1195] = {.lex_state = 18}, - [1196] = {.lex_state = 18}, - [1197] = {.lex_state = 18}, - [1198] = {.lex_state = 18}, - [1199] = {.lex_state = 18}, - [1200] = {.lex_state = 18}, - [1201] = {.lex_state = 18}, - [1202] = {.lex_state = 18}, - [1203] = {.lex_state = 18}, - [1204] = {.lex_state = 18}, - [1205] = {.lex_state = 18}, - [1206] = {.lex_state = 18}, - [1207] = {.lex_state = 18}, - [1208] = {.lex_state = 18}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 18}, - [1211] = {.lex_state = 18}, - [1212] = {.lex_state = 18}, - [1213] = {.lex_state = 18}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, @@ -10338,67 +11124,67 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 18}, + [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 4}, - [1232] = {.lex_state = 4}, - [1233] = {.lex_state = 4}, - [1234] = {.lex_state = 4}, - [1235] = {.lex_state = 4}, - [1236] = {.lex_state = 4}, - [1237] = {.lex_state = 4}, - [1238] = {.lex_state = 4}, - [1239] = {.lex_state = 4}, - [1240] = {.lex_state = 4}, - [1241] = {.lex_state = 4}, - [1242] = {.lex_state = 4}, - [1243] = {.lex_state = 17}, - [1244] = {.lex_state = 23}, - [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 23}, - [1247] = {.lex_state = 23}, - [1248] = {.lex_state = 23}, - [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 23}, - [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 4}, - [1260] = {.lex_state = 4}, - [1261] = {.lex_state = 4}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 4}, - [1265] = {.lex_state = 4}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 4}, - [1268] = {.lex_state = 4}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 0}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 4}, + [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 4}, + [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 4}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 23}, + [1281] = {.lex_state = 23}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 4}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 4}, + [1283] = {.lex_state = 23}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 23}, + [1286] = {.lex_state = 23}, [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, @@ -10408,601 +11194,863 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 24}, - [1297] = {.lex_state = 24}, - [1298] = {.lex_state = 24}, - [1299] = {.lex_state = 24}, - [1300] = {.lex_state = 24}, - [1301] = {.lex_state = 24}, - [1302] = {.lex_state = 24}, - [1303] = {.lex_state = 24}, - [1304] = {.lex_state = 4}, - [1305] = {.lex_state = 24}, - [1306] = {.lex_state = 24}, - [1307] = {.lex_state = 24}, - [1308] = {.lex_state = 24}, - [1309] = {.lex_state = 24}, - [1310] = {.lex_state = 24}, - [1311] = {.lex_state = 1}, - [1312] = {.lex_state = 2}, - [1313] = {.lex_state = 24}, - [1314] = {.lex_state = 24}, - [1315] = {.lex_state = 24}, - [1316] = {.lex_state = 24}, - [1317] = {.lex_state = 24}, - [1318] = {.lex_state = 24}, - [1319] = {.lex_state = 24}, - [1320] = {.lex_state = 24}, - [1321] = {.lex_state = 1}, - [1322] = {.lex_state = 2}, - [1323] = {.lex_state = 24}, - [1324] = {.lex_state = 4}, - [1325] = {.lex_state = 4}, - [1326] = {.lex_state = 24}, - [1327] = {.lex_state = 24}, - [1328] = {.lex_state = 24}, - [1329] = {.lex_state = 24}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 19}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 19}, + [1327] = {.lex_state = 19}, + [1328] = {.lex_state = 19}, + [1329] = {.lex_state = 19}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 24}, - [1332] = {.lex_state = 24}, - [1333] = {.lex_state = 24}, - [1334] = {.lex_state = 24}, - [1335] = {.lex_state = 24}, - [1336] = {.lex_state = 24}, - [1337] = {.lex_state = 1}, - [1338] = {.lex_state = 2}, - [1339] = {.lex_state = 24}, - [1340] = {.lex_state = 24}, - [1341] = {.lex_state = 24}, - [1342] = {.lex_state = 24}, - [1343] = {.lex_state = 24}, - [1344] = {.lex_state = 24}, - [1345] = {.lex_state = 24}, - [1346] = {.lex_state = 24}, - [1347] = {.lex_state = 1}, - [1348] = {.lex_state = 2}, - [1349] = {.lex_state = 4}, - [1350] = {.lex_state = 4}, - [1351] = {.lex_state = 24}, - [1352] = {.lex_state = 24}, - [1353] = {.lex_state = 24}, - [1354] = {.lex_state = 24}, - [1355] = {.lex_state = 24}, - [1356] = {.lex_state = 24}, - [1357] = {.lex_state = 24}, - [1358] = {.lex_state = 24}, - [1359] = {.lex_state = 1}, - [1360] = {.lex_state = 2}, - [1361] = {.lex_state = 24}, - [1362] = {.lex_state = 24}, - [1363] = {.lex_state = 24}, - [1364] = {.lex_state = 24}, - [1365] = {.lex_state = 24}, - [1366] = {.lex_state = 24}, - [1367] = {.lex_state = 24}, - [1368] = {.lex_state = 24}, - [1369] = {.lex_state = 24}, - [1370] = {.lex_state = 24}, - [1371] = {.lex_state = 24}, - [1372] = {.lex_state = 24}, - [1373] = {.lex_state = 1}, - [1374] = {.lex_state = 2}, - [1375] = {.lex_state = 24}, - [1376] = {.lex_state = 24}, - [1377] = {.lex_state = 24}, - [1378] = {.lex_state = 24}, - [1379] = {.lex_state = 24}, - [1380] = {.lex_state = 24}, - [1381] = {.lex_state = 24}, - [1382] = {.lex_state = 24}, - [1383] = {.lex_state = 1}, - [1384] = {.lex_state = 2}, - [1385] = {.lex_state = 24}, + [1331] = {.lex_state = 19}, + [1332] = {.lex_state = 19}, + [1333] = {.lex_state = 19}, + [1334] = {.lex_state = 19}, + [1335] = {.lex_state = 19}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 19}, + [1338] = {.lex_state = 19}, + [1339] = {.lex_state = 19}, + [1340] = {.lex_state = 19}, + [1341] = {.lex_state = 19}, + [1342] = {.lex_state = 19}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 19}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 19}, + [1347] = {.lex_state = 19}, + [1348] = {.lex_state = 19}, + [1349] = {.lex_state = 19}, + [1350] = {.lex_state = 19}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 19}, + [1353] = {.lex_state = 19}, + [1354] = {.lex_state = 19}, + [1355] = {.lex_state = 19}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 19}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 4}, + [1375] = {.lex_state = 4}, + [1376] = {.lex_state = 4}, + [1377] = {.lex_state = 4}, + [1378] = {.lex_state = 4}, + [1379] = {.lex_state = 4}, + [1380] = {.lex_state = 4}, + [1381] = {.lex_state = 4}, + [1382] = {.lex_state = 4}, + [1383] = {.lex_state = 4}, + [1384] = {.lex_state = 4}, + [1385] = {.lex_state = 4}, [1386] = {.lex_state = 4}, - [1387] = {.lex_state = 4}, - [1388] = {.lex_state = 24}, + [1387] = {.lex_state = 24}, + [1388] = {.lex_state = 18}, [1389] = {.lex_state = 24}, [1390] = {.lex_state = 24}, - [1391] = {.lex_state = 4}, - [1392] = {.lex_state = 1}, + [1391] = {.lex_state = 24}, + [1392] = {.lex_state = 24}, [1393] = {.lex_state = 24}, - [1394] = {.lex_state = 2}, - [1395] = {.lex_state = 4}, - [1396] = {.lex_state = 4}, + [1394] = {.lex_state = 24}, + [1395] = {.lex_state = 24}, + [1396] = {.lex_state = 24}, [1397] = {.lex_state = 24}, [1398] = {.lex_state = 24}, [1399] = {.lex_state = 24}, [1400] = {.lex_state = 24}, [1401] = {.lex_state = 24}, [1402] = {.lex_state = 24}, - [1403] = {.lex_state = 24}, - [1404] = {.lex_state = 24}, - [1405] = {.lex_state = 24}, - [1406] = {.lex_state = 24}, - [1407] = {.lex_state = 24}, - [1408] = {.lex_state = 24}, - [1409] = {.lex_state = 1}, - [1410] = {.lex_state = 2}, - [1411] = {.lex_state = 24}, - [1412] = {.lex_state = 24}, - [1413] = {.lex_state = 24}, - [1414] = {.lex_state = 24}, - [1415] = {.lex_state = 24}, - [1416] = {.lex_state = 24}, - [1417] = {.lex_state = 24}, - [1418] = {.lex_state = 24}, - [1419] = {.lex_state = 1}, - [1420] = {.lex_state = 2}, - [1421] = {.lex_state = 1}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 4}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 4}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 4}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 4}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, [1422] = {.lex_state = 4}, [1423] = {.lex_state = 4}, - [1424] = {.lex_state = 24}, - [1425] = {.lex_state = 24}, - [1426] = {.lex_state = 24}, - [1427] = {.lex_state = 2}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 4}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 4}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 24}, + [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 24}, - [1432] = {.lex_state = 24}, - [1433] = {.lex_state = 24}, - [1434] = {.lex_state = 24}, - [1435] = {.lex_state = 24}, - [1436] = {.lex_state = 24}, - [1437] = {.lex_state = 24}, - [1438] = {.lex_state = 1}, - [1439] = {.lex_state = 2}, - [1440] = {.lex_state = 24}, - [1441] = {.lex_state = 24}, - [1442] = {.lex_state = 24}, - [1443] = {.lex_state = 24}, - [1444] = {.lex_state = 24}, - [1445] = {.lex_state = 24}, - [1446] = {.lex_state = 24}, - [1447] = {.lex_state = 24}, - [1448] = {.lex_state = 24}, - [1449] = {.lex_state = 1}, - [1450] = {.lex_state = 2}, - [1451] = {.lex_state = 4}, - [1452] = {.lex_state = 4}, - [1453] = {.lex_state = 24}, - [1454] = {.lex_state = 24}, - [1455] = {.lex_state = 24}, - [1456] = {.lex_state = 4}, - [1457] = {.lex_state = 4}, - [1458] = {.lex_state = 24}, - [1459] = {.lex_state = 24}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 24}, - [1462] = {.lex_state = 24}, - [1463] = {.lex_state = 24}, - [1464] = {.lex_state = 24}, - [1465] = {.lex_state = 24}, - [1466] = {.lex_state = 24}, - [1467] = {.lex_state = 1}, - [1468] = {.lex_state = 2}, - [1469] = {.lex_state = 24}, - [1470] = {.lex_state = 24}, - [1471] = {.lex_state = 24}, - [1472] = {.lex_state = 24}, - [1473] = {.lex_state = 24}, - [1474] = {.lex_state = 24}, - [1475] = {.lex_state = 24}, - [1476] = {.lex_state = 24}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 4}, + [1433] = {.lex_state = 4}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 4}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 4}, + [1441] = {.lex_state = 4}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 25}, + [1445] = {.lex_state = 25}, + [1446] = {.lex_state = 25}, + [1447] = {.lex_state = 25}, + [1448] = {.lex_state = 25}, + [1449] = {.lex_state = 25}, + [1450] = {.lex_state = 25}, + [1451] = {.lex_state = 1}, + [1452] = {.lex_state = 2}, + [1453] = {.lex_state = 25}, + [1454] = {.lex_state = 25}, + [1455] = {.lex_state = 25}, + [1456] = {.lex_state = 25}, + [1457] = {.lex_state = 25}, + [1458] = {.lex_state = 25}, + [1459] = {.lex_state = 25}, + [1460] = {.lex_state = 25}, + [1461] = {.lex_state = 1}, + [1462] = {.lex_state = 2}, + [1463] = {.lex_state = 4}, + [1464] = {.lex_state = 4}, + [1465] = {.lex_state = 25}, + [1466] = {.lex_state = 25}, + [1467] = {.lex_state = 25}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 26}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 25}, + [1473] = {.lex_state = 25}, + [1474] = {.lex_state = 25}, + [1475] = {.lex_state = 25}, + [1476] = {.lex_state = 25}, [1477] = {.lex_state = 1}, [1478] = {.lex_state = 2}, - [1479] = {.lex_state = 4}, - [1480] = {.lex_state = 24}, - [1481] = {.lex_state = 24}, - [1482] = {.lex_state = 24}, - [1483] = {.lex_state = 24}, - [1484] = {.lex_state = 1}, - [1485] = {.lex_state = 2}, - [1486] = {.lex_state = 24}, + [1479] = {.lex_state = 25}, + [1480] = {.lex_state = 25}, + [1481] = {.lex_state = 25}, + [1482] = {.lex_state = 25}, + [1483] = {.lex_state = 25}, + [1484] = {.lex_state = 25}, + [1485] = {.lex_state = 25}, + [1486] = {.lex_state = 25}, [1487] = {.lex_state = 1}, [1488] = {.lex_state = 2}, - [1489] = {.lex_state = 24}, - [1490] = {.lex_state = 352}, - [1491] = {.lex_state = 352}, - [1492] = {.lex_state = 352}, - [1493] = {.lex_state = 24}, - [1494] = {.lex_state = 1}, - [1495] = {.lex_state = 2}, - [1496] = {.lex_state = 24}, - [1497] = {.lex_state = 24}, - [1498] = {.lex_state = 24}, - [1499] = {.lex_state = 24}, - [1500] = {.lex_state = 352}, - [1501] = {.lex_state = 352}, - [1502] = {.lex_state = 352}, - [1503] = {.lex_state = 24}, - [1504] = {.lex_state = 24}, - [1505] = {.lex_state = 24}, - [1506] = {.lex_state = 24}, - [1507] = {.lex_state = 24}, - [1508] = {.lex_state = 24}, - [1509] = {.lex_state = 24}, - [1510] = {.lex_state = 352}, - [1511] = {.lex_state = 352}, - [1512] = {.lex_state = 352}, - [1513] = {.lex_state = 1}, - [1514] = {.lex_state = 2}, - [1515] = {.lex_state = 24}, - [1516] = {.lex_state = 24}, - [1517] = {.lex_state = 4}, + [1489] = {.lex_state = 25}, + [1490] = {.lex_state = 4}, + [1491] = {.lex_state = 4}, + [1492] = {.lex_state = 25}, + [1493] = {.lex_state = 25}, + [1494] = {.lex_state = 25}, + [1495] = {.lex_state = 26}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 25}, + [1499] = {.lex_state = 25}, + [1500] = {.lex_state = 25}, + [1501] = {.lex_state = 25}, + [1502] = {.lex_state = 25}, + [1503] = {.lex_state = 25}, + [1504] = {.lex_state = 25}, + [1505] = {.lex_state = 1}, + [1506] = {.lex_state = 2}, + [1507] = {.lex_state = 25}, + [1508] = {.lex_state = 25}, + [1509] = {.lex_state = 25}, + [1510] = {.lex_state = 25}, + [1511] = {.lex_state = 25}, + [1512] = {.lex_state = 25}, + [1513] = {.lex_state = 25}, + [1514] = {.lex_state = 25}, + [1515] = {.lex_state = 1}, + [1516] = {.lex_state = 2}, + [1517] = {.lex_state = 25}, [1518] = {.lex_state = 4}, - [1519] = {.lex_state = 24}, - [1520] = {.lex_state = 352}, - [1521] = {.lex_state = 352}, - [1522] = {.lex_state = 352}, - [1523] = {.lex_state = 24}, - [1524] = {.lex_state = 24}, - [1525] = {.lex_state = 4}, - [1526] = {.lex_state = 352}, - [1527] = {.lex_state = 352}, - [1528] = {.lex_state = 352}, - [1529] = {.lex_state = 4}, - [1530] = {.lex_state = 352}, - [1531] = {.lex_state = 1}, - [1532] = {.lex_state = 24}, - [1533] = {.lex_state = 24}, - [1534] = {.lex_state = 352}, - [1535] = {.lex_state = 352}, - [1536] = {.lex_state = 352}, - [1537] = {.lex_state = 24}, - [1538] = {.lex_state = 2}, - [1539] = {.lex_state = 24}, - [1540] = {.lex_state = 24}, - [1541] = {.lex_state = 352}, - [1542] = {.lex_state = 352}, - [1543] = {.lex_state = 352}, - [1544] = {.lex_state = 24}, - [1545] = {.lex_state = 352}, - [1546] = {.lex_state = 352}, - [1547] = {.lex_state = 352}, - [1548] = {.lex_state = 352}, - [1549] = {.lex_state = 24}, + [1519] = {.lex_state = 4}, + [1520] = {.lex_state = 25}, + [1521] = {.lex_state = 25}, + [1522] = {.lex_state = 25}, + [1523] = {.lex_state = 25}, + [1524] = {.lex_state = 25}, + [1525] = {.lex_state = 25}, + [1526] = {.lex_state = 25}, + [1527] = {.lex_state = 25}, + [1528] = {.lex_state = 25}, + [1529] = {.lex_state = 1}, + [1530] = {.lex_state = 2}, + [1531] = {.lex_state = 25}, + [1532] = {.lex_state = 25}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 25}, + [1535] = {.lex_state = 25}, + [1536] = {.lex_state = 25}, + [1537] = {.lex_state = 25}, + [1538] = {.lex_state = 25}, + [1539] = {.lex_state = 25}, + [1540] = {.lex_state = 1}, + [1541] = {.lex_state = 2}, + [1542] = {.lex_state = 25}, + [1543] = {.lex_state = 25}, + [1544] = {.lex_state = 25}, + [1545] = {.lex_state = 25}, + [1546] = {.lex_state = 25}, + [1547] = {.lex_state = 25}, + [1548] = {.lex_state = 25}, + [1549] = {.lex_state = 25}, [1550] = {.lex_state = 1}, - [1551] = {.lex_state = 24}, - [1552] = {.lex_state = 24}, - [1553] = {.lex_state = 24}, - [1554] = {.lex_state = 24}, - [1555] = {.lex_state = 352}, - [1556] = {.lex_state = 352}, - [1557] = {.lex_state = 352}, - [1558] = {.lex_state = 1}, - [1559] = {.lex_state = 2}, - [1560] = {.lex_state = 24}, - [1561] = {.lex_state = 24}, - [1562] = {.lex_state = 24}, - [1563] = {.lex_state = 24}, - [1564] = {.lex_state = 24}, - [1565] = {.lex_state = 24}, - [1566] = {.lex_state = 352}, - [1567] = {.lex_state = 352}, - [1568] = {.lex_state = 352}, - [1569] = {.lex_state = 24}, - [1570] = {.lex_state = 24}, - [1571] = {.lex_state = 1}, - [1572] = {.lex_state = 24}, - [1573] = {.lex_state = 2}, - [1574] = {.lex_state = 2}, - [1575] = {.lex_state = 352}, - [1576] = {.lex_state = 352}, - [1577] = {.lex_state = 352}, - [1578] = {.lex_state = 4}, - [1579] = {.lex_state = 4}, - [1580] = {.lex_state = 24}, - [1581] = {.lex_state = 24}, - [1582] = {.lex_state = 24}, - [1583] = {.lex_state = 24}, - [1584] = {.lex_state = 24}, + [1551] = {.lex_state = 2}, + [1552] = {.lex_state = 25}, + [1553] = {.lex_state = 4}, + [1554] = {.lex_state = 4}, + [1555] = {.lex_state = 25}, + [1556] = {.lex_state = 25}, + [1557] = {.lex_state = 25}, + [1558] = {.lex_state = 25}, + [1559] = {.lex_state = 25}, + [1560] = {.lex_state = 25}, + [1561] = {.lex_state = 25}, + [1562] = {.lex_state = 1}, + [1563] = {.lex_state = 2}, + [1564] = {.lex_state = 4}, + [1565] = {.lex_state = 4}, + [1566] = {.lex_state = 25}, + [1567] = {.lex_state = 1}, + [1568] = {.lex_state = 25}, + [1569] = {.lex_state = 25}, + [1570] = {.lex_state = 25}, + [1571] = {.lex_state = 25}, + [1572] = {.lex_state = 25}, + [1573] = {.lex_state = 25}, + [1574] = {.lex_state = 25}, + [1575] = {.lex_state = 1}, + [1576] = {.lex_state = 2}, + [1577] = {.lex_state = 25}, + [1578] = {.lex_state = 25}, + [1579] = {.lex_state = 25}, + [1580] = {.lex_state = 25}, + [1581] = {.lex_state = 25}, + [1582] = {.lex_state = 25}, + [1583] = {.lex_state = 25}, + [1584] = {.lex_state = 25}, [1585] = {.lex_state = 1}, [1586] = {.lex_state = 2}, - [1587] = {.lex_state = 24}, - [1588] = {.lex_state = 24}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 24}, - [1591] = {.lex_state = 24}, - [1592] = {.lex_state = 24}, + [1587] = {.lex_state = 4}, + [1588] = {.lex_state = 4}, + [1589] = {.lex_state = 25}, + [1590] = {.lex_state = 25}, + [1591] = {.lex_state = 25}, + [1592] = {.lex_state = 2}, [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 24}, - [1595] = {.lex_state = 1}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 2}, - [1598] = {.lex_state = 24}, - [1599] = {.lex_state = 4}, - [1600] = {.lex_state = 24}, - [1601] = {.lex_state = 4}, - [1602] = {.lex_state = 24}, - [1603] = {.lex_state = 24}, - [1604] = {.lex_state = 24}, - [1605] = {.lex_state = 24}, - [1606] = {.lex_state = 4}, - [1607] = {.lex_state = 24}, - [1608] = {.lex_state = 1}, - [1609] = {.lex_state = 4}, - [1610] = {.lex_state = 352}, - [1611] = {.lex_state = 1}, - [1612] = {.lex_state = 24}, - [1613] = {.lex_state = 24}, + [1594] = {.lex_state = 26}, + [1595] = {.lex_state = 26}, + [1596] = {.lex_state = 1}, + [1597] = {.lex_state = 25}, + [1598] = {.lex_state = 25}, + [1599] = {.lex_state = 25}, + [1600] = {.lex_state = 25}, + [1601] = {.lex_state = 25}, + [1602] = {.lex_state = 1}, + [1603] = {.lex_state = 2}, + [1604] = {.lex_state = 25}, + [1605] = {.lex_state = 25}, + [1606] = {.lex_state = 25}, + [1607] = {.lex_state = 25}, + [1608] = {.lex_state = 25}, + [1609] = {.lex_state = 25}, + [1610] = {.lex_state = 25}, + [1611] = {.lex_state = 25}, + [1612] = {.lex_state = 2}, + [1613] = {.lex_state = 1}, [1614] = {.lex_state = 2}, - [1615] = {.lex_state = 2}, - [1616] = {.lex_state = 24}, - [1617] = {.lex_state = 24}, - [1618] = {.lex_state = 24}, - [1619] = {.lex_state = 24}, - [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 24}, - [1623] = {.lex_state = 24}, - [1624] = {.lex_state = 24}, - [1625] = {.lex_state = 1}, - [1626] = {.lex_state = 2}, - [1627] = {.lex_state = 24}, - [1628] = {.lex_state = 4}, - [1629] = {.lex_state = 4}, - [1630] = {.lex_state = 24}, - [1631] = {.lex_state = 24}, - [1632] = {.lex_state = 24}, - [1633] = {.lex_state = 24}, - [1634] = {.lex_state = 24}, - [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 1}, - [1637] = {.lex_state = 2}, - [1638] = {.lex_state = 24}, - [1639] = {.lex_state = 352}, - [1640] = {.lex_state = 16}, - [1641] = {.lex_state = 352}, - [1642] = {.lex_state = 352}, - [1643] = {.lex_state = 4}, - [1644] = {.lex_state = 4}, + [1615] = {.lex_state = 4}, + [1616] = {.lex_state = 4}, + [1617] = {.lex_state = 25}, + [1618] = {.lex_state = 25}, + [1619] = {.lex_state = 25}, + [1620] = {.lex_state = 390}, + [1621] = {.lex_state = 25}, + [1622] = {.lex_state = 25}, + [1623] = {.lex_state = 25}, + [1624] = {.lex_state = 25}, + [1625] = {.lex_state = 25}, + [1626] = {.lex_state = 25}, + [1627] = {.lex_state = 25}, + [1628] = {.lex_state = 25}, + [1629] = {.lex_state = 25}, + [1630] = {.lex_state = 25}, + [1631] = {.lex_state = 1}, + [1632] = {.lex_state = 2}, + [1633] = {.lex_state = 25}, + [1634] = {.lex_state = 25}, + [1635] = {.lex_state = 25}, + [1636] = {.lex_state = 25}, + [1637] = {.lex_state = 25}, + [1638] = {.lex_state = 25}, + [1639] = {.lex_state = 25}, + [1640] = {.lex_state = 25}, + [1641] = {.lex_state = 25}, + [1642] = {.lex_state = 1}, + [1643] = {.lex_state = 2}, + [1644] = {.lex_state = 25}, [1645] = {.lex_state = 4}, - [1646] = {.lex_state = 352}, - [1647] = {.lex_state = 352}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 352}, - [1651] = {.lex_state = 352}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 4}, - [1656] = {.lex_state = 352}, - [1657] = {.lex_state = 352}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 352}, - [1660] = {.lex_state = 352}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 352}, - [1663] = {.lex_state = 352}, - [1664] = {.lex_state = 352}, - [1665] = {.lex_state = 4}, - [1666] = {.lex_state = 352}, - [1667] = {.lex_state = 352}, - [1668] = {.lex_state = 352}, - [1669] = {.lex_state = 4}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 352}, - [1672] = {.lex_state = 352}, - [1673] = {.lex_state = 352}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 16}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 4}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 24}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 4}, - [1684] = {.lex_state = 24}, - [1685] = {.lex_state = 352}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 352}, - [1690] = {.lex_state = 352}, - [1691] = {.lex_state = 352}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 352}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 4}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 4}, - [1701] = {.lex_state = 4}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 4}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 4}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 16}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 16}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 4}, - [1741] = {.lex_state = 352}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 4}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 4}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 16}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 16}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 16}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 4}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 16}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 16}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 16}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 16}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 16}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 4}, - [1793] = {.lex_state = 16}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 16}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 4}, - [1806] = {.lex_state = 16}, + [1646] = {.lex_state = 4}, + [1647] = {.lex_state = 25}, + [1648] = {.lex_state = 25}, + [1649] = {.lex_state = 25}, + [1650] = {.lex_state = 25}, + [1651] = {.lex_state = 1}, + [1652] = {.lex_state = 2}, + [1653] = {.lex_state = 25}, + [1654] = {.lex_state = 25}, + [1655] = {.lex_state = 25}, + [1656] = {.lex_state = 25}, + [1657] = {.lex_state = 4}, + [1658] = {.lex_state = 25}, + [1659] = {.lex_state = 25}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 25}, + [1662] = {.lex_state = 25}, + [1663] = {.lex_state = 25}, + [1664] = {.lex_state = 25}, + [1665] = {.lex_state = 25}, + [1666] = {.lex_state = 25}, + [1667] = {.lex_state = 25}, + [1668] = {.lex_state = 1}, + [1669] = {.lex_state = 2}, + [1670] = {.lex_state = 25}, + [1671] = {.lex_state = 25}, + [1672] = {.lex_state = 25}, + [1673] = {.lex_state = 25}, + [1674] = {.lex_state = 25}, + [1675] = {.lex_state = 25}, + [1676] = {.lex_state = 25}, + [1677] = {.lex_state = 25}, + [1678] = {.lex_state = 1}, + [1679] = {.lex_state = 2}, + [1680] = {.lex_state = 4}, + [1681] = {.lex_state = 25}, + [1682] = {.lex_state = 25}, + [1683] = {.lex_state = 25}, + [1684] = {.lex_state = 25}, + [1685] = {.lex_state = 1}, + [1686] = {.lex_state = 2}, + [1687] = {.lex_state = 25}, + [1688] = {.lex_state = 1}, + [1689] = {.lex_state = 2}, + [1690] = {.lex_state = 390}, + [1691] = {.lex_state = 390}, + [1692] = {.lex_state = 390}, + [1693] = {.lex_state = 1}, + [1694] = {.lex_state = 2}, + [1695] = {.lex_state = 4}, + [1696] = {.lex_state = 4}, + [1697] = {.lex_state = 25}, + [1698] = {.lex_state = 25}, + [1699] = {.lex_state = 25}, + [1700] = {.lex_state = 25}, + [1701] = {.lex_state = 390}, + [1702] = {.lex_state = 390}, + [1703] = {.lex_state = 390}, + [1704] = {.lex_state = 25}, + [1705] = {.lex_state = 390}, + [1706] = {.lex_state = 390}, + [1707] = {.lex_state = 390}, + [1708] = {.lex_state = 25}, + [1709] = {.lex_state = 25}, + [1710] = {.lex_state = 25}, + [1711] = {.lex_state = 390}, + [1712] = {.lex_state = 390}, + [1713] = {.lex_state = 390}, + [1714] = {.lex_state = 26}, + [1715] = {.lex_state = 25}, + [1716] = {.lex_state = 390}, + [1717] = {.lex_state = 390}, + [1718] = {.lex_state = 390}, + [1719] = {.lex_state = 25}, + [1720] = {.lex_state = 25}, + [1721] = {.lex_state = 26}, + [1722] = {.lex_state = 25}, + [1723] = {.lex_state = 25}, + [1724] = {.lex_state = 25}, + [1725] = {.lex_state = 25}, + [1726] = {.lex_state = 390}, + [1727] = {.lex_state = 390}, + [1728] = {.lex_state = 390}, + [1729] = {.lex_state = 25}, + [1730] = {.lex_state = 1}, + [1731] = {.lex_state = 2}, + [1732] = {.lex_state = 4}, + [1733] = {.lex_state = 25}, + [1734] = {.lex_state = 25}, + [1735] = {.lex_state = 25}, + [1736] = {.lex_state = 390}, + [1737] = {.lex_state = 390}, + [1738] = {.lex_state = 390}, + [1739] = {.lex_state = 25}, + [1740] = {.lex_state = 25}, + [1741] = {.lex_state = 25}, + [1742] = {.lex_state = 26}, + [1743] = {.lex_state = 25}, + [1744] = {.lex_state = 25}, + [1745] = {.lex_state = 390}, + [1746] = {.lex_state = 390}, + [1747] = {.lex_state = 390}, + [1748] = {.lex_state = 1}, + [1749] = {.lex_state = 2}, + [1750] = {.lex_state = 4}, + [1751] = {.lex_state = 4}, + [1752] = {.lex_state = 25}, + [1753] = {.lex_state = 25}, + [1754] = {.lex_state = 390}, + [1755] = {.lex_state = 390}, + [1756] = {.lex_state = 390}, + [1757] = {.lex_state = 25}, + [1758] = {.lex_state = 25}, + [1759] = {.lex_state = 1}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 2}, + [1762] = {.lex_state = 25}, + [1763] = {.lex_state = 390}, + [1764] = {.lex_state = 390}, + [1765] = {.lex_state = 390}, + [1766] = {.lex_state = 25}, + [1767] = {.lex_state = 25}, + [1768] = {.lex_state = 25}, + [1769] = {.lex_state = 390}, + [1770] = {.lex_state = 390}, + [1771] = {.lex_state = 390}, + [1772] = {.lex_state = 25}, + [1773] = {.lex_state = 4}, + [1774] = {.lex_state = 25}, + [1775] = {.lex_state = 26}, + [1776] = {.lex_state = 4}, + [1777] = {.lex_state = 25}, + [1778] = {.lex_state = 390}, + [1779] = {.lex_state = 390}, + [1780] = {.lex_state = 390}, + [1781] = {.lex_state = 25}, + [1782] = {.lex_state = 4}, + [1783] = {.lex_state = 25}, + [1784] = {.lex_state = 25}, + [1785] = {.lex_state = 25}, + [1786] = {.lex_state = 25}, + [1787] = {.lex_state = 25}, + [1788] = {.lex_state = 25}, + [1789] = {.lex_state = 25}, + [1790] = {.lex_state = 4}, + [1791] = {.lex_state = 25}, + [1792] = {.lex_state = 26}, + [1793] = {.lex_state = 1}, + [1794] = {.lex_state = 1}, + [1795] = {.lex_state = 2}, + [1796] = {.lex_state = 25}, + [1797] = {.lex_state = 25}, + [1798] = {.lex_state = 4}, + [1799] = {.lex_state = 25}, + [1800] = {.lex_state = 2}, + [1801] = {.lex_state = 25}, + [1802] = {.lex_state = 25}, + [1803] = {.lex_state = 25}, + [1804] = {.lex_state = 25}, + [1805] = {.lex_state = 25}, + [1806] = {.lex_state = 25}, [1807] = {.lex_state = 4}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 4}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 352}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 4}, - [1820] = {.lex_state = 16}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 352}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 16}, - [1828] = {.lex_state = 16}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 16}, - [1832] = {.lex_state = 0}, + [1808] = {.lex_state = 26}, + [1809] = {.lex_state = 1}, + [1810] = {.lex_state = 2}, + [1811] = {.lex_state = 1}, + [1812] = {.lex_state = 390}, + [1813] = {.lex_state = 4}, + [1814] = {.lex_state = 4}, + [1815] = {.lex_state = 25}, + [1816] = {.lex_state = 4}, + [1817] = {.lex_state = 4}, + [1818] = {.lex_state = 25}, + [1819] = {.lex_state = 25}, + [1820] = {.lex_state = 2}, + [1821] = {.lex_state = 4}, + [1822] = {.lex_state = 390}, + [1823] = {.lex_state = 26}, + [1824] = {.lex_state = 26}, + [1825] = {.lex_state = 26}, + [1826] = {.lex_state = 25}, + [1827] = {.lex_state = 4}, + [1828] = {.lex_state = 25}, + [1829] = {.lex_state = 25}, + [1830] = {.lex_state = 25}, + [1831] = {.lex_state = 390}, + [1832] = {.lex_state = 4}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 16}, - [1835] = {.lex_state = 0}, + [1834] = {.lex_state = 390}, + [1835] = {.lex_state = 390}, [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, + [1837] = {.lex_state = 390}, + [1838] = {.lex_state = 390}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 4}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 0}, + [1840] = {.lex_state = 390}, + [1841] = {.lex_state = 4}, + [1842] = {.lex_state = 390}, + [1843] = {.lex_state = 390}, + [1844] = {.lex_state = 17}, + [1845] = {.lex_state = 4}, + [1846] = {.lex_state = 390}, + [1847] = {.lex_state = 390}, + [1848] = {.lex_state = 390}, + [1849] = {.lex_state = 17}, [1850] = {.lex_state = 4}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 16}, - [1854] = {.lex_state = 4}, - [1855] = {.lex_state = 4}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 352}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 352}, - [1860] = {.lex_state = 352}, - [1861] = {.lex_state = 352}, - [1862] = {.lex_state = 352}, - [1863] = {.lex_state = 352}, - [1864] = {.lex_state = 352}, - [1865] = {.lex_state = 352}, - [1866] = {.lex_state = 352}, - [1867] = {.lex_state = 352}, - [1868] = {.lex_state = 352}, - [1869] = {.lex_state = 16}, - [1870] = {.lex_state = 4}, - [1871] = {.lex_state = 4}, - [1872] = {.lex_state = 4}, - [1873] = {.lex_state = 4}, - [1874] = {.lex_state = 4}, - [1875] = {.lex_state = 4}, - [1876] = {.lex_state = 4}, - [1877] = {.lex_state = 4}, - [1878] = {.lex_state = 4}, - [1879] = {.lex_state = 4}, - [1880] = {.lex_state = 0}, + [1852] = {.lex_state = 390}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 390}, + [1855] = {.lex_state = 390}, + [1856] = {.lex_state = 390}, + [1857] = {.lex_state = 4}, + [1858] = {.lex_state = 390}, + [1859] = {.lex_state = 0}, + [1860] = {.lex_state = 390}, + [1861] = {.lex_state = 390}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 0}, + [1864] = {.lex_state = 390}, + [1865] = {.lex_state = 390}, + [1866] = {.lex_state = 4}, + [1867] = {.lex_state = 390}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 390}, + [1871] = {.lex_state = 26}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 26}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 390}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 25}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 390}, + [1884] = {.lex_state = 390}, + [1885] = {.lex_state = 390}, + [1886] = {.lex_state = 26}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 4}, + [1889] = {.lex_state = 4}, + [1890] = {.lex_state = 25}, + [1891] = {.lex_state = 25}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 17}, + [1894] = {.lex_state = 26}, + [1895] = {.lex_state = 390}, + [1896] = {.lex_state = 390}, + [1897] = {.lex_state = 4}, + [1898] = {.lex_state = 0}, + [1899] = {.lex_state = 4}, + [1900] = {.lex_state = 25}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 0}, + [1903] = {.lex_state = 0}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 0}, + [1908] = {.lex_state = 0}, + [1909] = {.lex_state = 0}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 0}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 4}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 0}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 0}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 17}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 4}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 17}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 0}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 0}, + [1938] = {.lex_state = 390}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 17}, + [1941] = {.lex_state = 4}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 17}, + [1944] = {.lex_state = 17}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 0}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 4}, + [1951] = {.lex_state = 17}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, + [1954] = {.lex_state = 4}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 0}, + [1959] = {.lex_state = 0}, + [1960] = {.lex_state = 0}, + [1961] = {.lex_state = 0}, + [1962] = {.lex_state = 17}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 0}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 17}, + [1967] = {.lex_state = 4}, + [1968] = {.lex_state = 0}, + [1969] = {.lex_state = 0}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 17}, + [1972] = {.lex_state = 0}, + [1973] = {.lex_state = 0}, + [1974] = {.lex_state = 0}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 0}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 4}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 4}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 17}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 0}, + [1990] = {.lex_state = 0}, + [1991] = {.lex_state = 17}, + [1992] = {.lex_state = 0}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 0}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 0}, + [1998] = {.lex_state = 0}, + [1999] = {.lex_state = 17}, + [2000] = {.lex_state = 4}, + [2001] = {.lex_state = 17}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 0}, + [2006] = {.lex_state = 0}, + [2007] = {.lex_state = 0}, + [2008] = {.lex_state = 0}, + [2009] = {.lex_state = 0}, + [2010] = {.lex_state = 0}, + [2011] = {.lex_state = 4}, + [2012] = {.lex_state = 0}, + [2013] = {.lex_state = 17}, + [2014] = {.lex_state = 0}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 0}, + [2018] = {.lex_state = 17}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 0}, + [2022] = {.lex_state = 0}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 0}, + [2027] = {.lex_state = 0}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 0}, + [2030] = {.lex_state = 17}, + [2031] = {.lex_state = 4}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 17}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 0}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 17}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 0}, + [2043] = {.lex_state = 0}, + [2044] = {.lex_state = 4}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 17}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 17}, + [2061] = {.lex_state = 17}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 390}, + [2064] = {.lex_state = 17}, + [2065] = {.lex_state = 17}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 4}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 17}, + [2072] = {.lex_state = 0}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 17}, + [2076] = {.lex_state = 17}, + [2077] = {.lex_state = 0}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 17}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 17}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 0}, + [2091] = {.lex_state = 0}, + [2092] = {.lex_state = 4}, + [2093] = {.lex_state = 4}, + [2094] = {.lex_state = 390}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 17}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 4}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 0}, + [2107] = {.lex_state = 0}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 390}, + [2110] = {.lex_state = 0}, + [2111] = {.lex_state = 390}, + [2112] = {.lex_state = 390}, + [2113] = {.lex_state = 390}, + [2114] = {.lex_state = 390}, + [2115] = {.lex_state = 390}, + [2116] = {.lex_state = 390}, + [2117] = {.lex_state = 390}, + [2118] = {.lex_state = 390}, + [2119] = {.lex_state = 390}, + [2120] = {.lex_state = 390}, + [2121] = {.lex_state = 390}, + [2122] = {.lex_state = 4}, + [2123] = {.lex_state = 4}, + [2124] = {.lex_state = 4}, + [2125] = {.lex_state = 4}, + [2126] = {.lex_state = 4}, + [2127] = {.lex_state = 4}, + [2128] = {.lex_state = 4}, + [2129] = {.lex_state = 4}, + [2130] = {.lex_state = 4}, + [2131] = {.lex_state = 4}, + [2132] = {.lex_state = 4}, + [2133] = {.lex_state = 4}, + [2134] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_TYPE] = ACTIONS(1), [anon_sym_TITLE] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_VERSION] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_STRUCT] = ACTIONS(1), + [anon_sym_END_STRUCT] = ACTIONS(1), + [anon_sym_END_TYPE] = ACTIONS(1), + [anon_sym_DATA_BLOCK] = ACTIONS(1), + [anon_sym_NON_RETAIN] = ACTIONS(1), + [anon_sym_RETAIN] = ACTIONS(1), [anon_sym_BEGIN] = ACTIONS(1), + [anon_sym_END_DATA_BLOCK] = ACTIONS(1), [anon_sym_END_ORGANIZATION_BLOCK] = ACTIONS(1), [anon_sym_FUNCTION_BLOCK] = ACTIONS(1), [anon_sym_FUNCTION] = ACTIONS(1), @@ -11020,8 +12068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_VAR] = ACTIONS(1), [anon_sym_VAR_TEMP] = ACTIONS(1), [anon_sym_CONSTANT] = ACTIONS(1), - [anon_sym_RETAIN] = ACTIONS(1), - [anon_sym_NON_RETAIN] = ACTIONS(1), [anon_sym_VAR_CONSTANT] = ACTIONS(1), [anon_sym_VAR_RETAIN] = ACTIONS(1), [anon_sym_VAR_NON_RETAIN] = ACTIONS(1), @@ -11134,90 +12180,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CONTINUE] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(1747), - [sym_organization_block] = STATE(8), - [sym_function_block] = STATE(8), - [sym_function] = STATE(8), - [sym_var_declaration] = STATE(374), - [sym_var_temp_declaration] = STATE(374), - [sym_var_constant_declaration] = STATE(374), - [sym_var_retain_declaration] = STATE(374), - [sym_var_non_retain_declaration] = STATE(374), - [sym_statement] = STATE(8), - [sym_empty_statement] = STATE(374), - [sym_fb_call] = STATE(374), - [sym_assignment] = STATE(374), - [sym_lvalue] = STATE(1662), - [sym_function_name] = STATE(1664), - [sym_prefixed_identifier] = STATE(1610), - [sym_field_access] = STATE(1664), - [sym_array_access] = STATE(1664), - [sym_if_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_for_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_repeat_statement] = STATE(374), - [sym_region_statement] = STATE(374), - [sym_function_call] = STATE(374), - [sym_string] = STATE(1530), - [sym_exit_statement] = STATE(374), - [sym_continue_statement] = STATE(374), - [aux_sym_source_file_repeat1] = STATE(8), + [sym_source_file] = STATE(1995), + [sym_type_definition] = STATE(9), + [sym_data_block] = STATE(9), + [sym_organization_block] = STATE(9), + [sym_function_block] = STATE(9), + [sym_function] = STATE(9), + [sym_var_declaration] = STATE(361), + [sym_var_temp_declaration] = STATE(361), + [sym_var_constant_declaration] = STATE(361), + [sym_var_retain_declaration] = STATE(361), + [sym_var_non_retain_declaration] = STATE(361), + [sym_statement] = STATE(9), + [sym_empty_statement] = STATE(361), + [sym_fb_call] = STATE(361), + [sym_assignment] = STATE(361), + [sym_lvalue] = STATE(1838), + [sym_function_name] = STATE(1856), + [sym_prefixed_identifier] = STATE(1812), + [sym_field_access] = STATE(1856), + [sym_array_access] = STATE(1856), + [sym_if_statement] = STATE(361), + [sym_case_statement] = STATE(361), + [sym_for_statement] = STATE(361), + [sym_while_statement] = STATE(361), + [sym_repeat_statement] = STATE(361), + [sym_region_statement] = STATE(361), + [sym_function_call] = STATE(361), + [sym_string] = STATE(1822), + [sym_exit_statement] = STATE(361), + [sym_continue_statement] = STATE(361), + [aux_sym_source_file_repeat1] = STATE(9), [ts_builtin_sym_end] = ACTIONS(5), - [anon_sym_ORGANIZATION_BLOCK] = ACTIONS(7), - [anon_sym_FUNCTION_BLOCK] = ACTIONS(9), - [anon_sym_FUNCTION] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_VAR_INPUT] = ACTIONS(15), - [anon_sym_VAR_OUTPUT] = ACTIONS(15), - [anon_sym_VAR_IN_OUT] = ACTIONS(15), - [anon_sym_VAR] = ACTIONS(17), - [anon_sym_VAR_TEMP] = ACTIONS(19), - [anon_sym_VAR_CONSTANT] = ACTIONS(21), - [anon_sym_VAR_RETAIN] = ACTIONS(23), - [anon_sym_VAR_NON_RETAIN] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_IF] = ACTIONS(29), - [anon_sym_CASE] = ACTIONS(31), - [anon_sym_FOR] = ACTIONS(33), - [anon_sym_WHILE] = ACTIONS(35), - [anon_sym_REPEAT] = ACTIONS(37), - [anon_sym_REGION] = ACTIONS(39), - [anon_sym_SQUOTE] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_identifier] = ACTIONS(45), + [anon_sym_TYPE] = ACTIONS(7), + [anon_sym_DATA_BLOCK] = ACTIONS(9), + [anon_sym_ORGANIZATION_BLOCK] = ACTIONS(11), + [anon_sym_FUNCTION_BLOCK] = ACTIONS(13), + [anon_sym_FUNCTION] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_VAR_INPUT] = ACTIONS(19), + [anon_sym_VAR_OUTPUT] = ACTIONS(19), + [anon_sym_VAR_IN_OUT] = ACTIONS(19), + [anon_sym_VAR] = ACTIONS(21), + [anon_sym_VAR_TEMP] = ACTIONS(23), + [anon_sym_VAR_CONSTANT] = ACTIONS(25), + [anon_sym_VAR_RETAIN] = ACTIONS(27), + [anon_sym_VAR_NON_RETAIN] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_IF] = ACTIONS(33), + [anon_sym_CASE] = ACTIONS(35), + [anon_sym_FOR] = ACTIONS(37), + [anon_sym_WHILE] = ACTIONS(39), + [anon_sym_REPEAT] = ACTIONS(41), + [anon_sym_REGION] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [sym_identifier] = ACTIONS(49), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), [sym_c_style_comment] = ACTIONS(3), - [anon_sym_EXIT] = ACTIONS(47), - [anon_sym_CONTINUE] = ACTIONS(49), + [anon_sym_EXIT] = ACTIONS(51), + [anon_sym_CONTINUE] = ACTIONS(53), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(55), 1, + ACTIONS(59), 1, anon_sym_ARRAY, - STATE(1685), 1, + STATE(1864), 1, sym_string, - STATE(1690), 1, + STATE(1865), 1, sym_type, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(53), 6, + ACTIONS(57), 6, anon_sym_String, anon_sym_STRING, anon_sym_string, anon_sym_WString, anon_sym_WSTRING, anon_sym_wstring, - ACTIONS(51), 48, + ACTIONS(55), 48, anon_sym_BOOL, anon_sym_Bool, anon_sym_INT, @@ -11267,28 +12317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_wchar, sym_identifier, [79] = 8, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(55), 1, + ACTIONS(59), 1, anon_sym_ARRAY, - STATE(1671), 1, - sym_type, - STATE(1685), 1, + STATE(1864), 1, sym_string, + STATE(1896), 1, + sym_type, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(53), 6, + ACTIONS(57), 6, anon_sym_String, anon_sym_STRING, anon_sym_string, anon_sym_WString, anon_sym_WSTRING, anon_sym_wstring, - ACTIONS(51), 48, + ACTIONS(55), 48, anon_sym_BOOL, anon_sym_Bool, anon_sym_INT, @@ -11338,28 +12388,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_wchar, sym_identifier, [158] = 8, - ACTIONS(61), 1, - anon_sym_ARRAY, - ACTIONS(63), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(65), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - STATE(1008), 1, - sym_type, - STATE(1160), 1, + ACTIONS(59), 1, + anon_sym_ARRAY, + STATE(1864), 1, sym_string, + STATE(1884), 1, + sym_type, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(59), 6, + ACTIONS(57), 6, anon_sym_String, anon_sym_STRING, anon_sym_string, anon_sym_WString, anon_sym_WSTRING, anon_sym_wstring, - ACTIONS(57), 48, + ACTIONS(55), 48, anon_sym_BOOL, anon_sym_Bool, anon_sym_INT, @@ -11409,28 +12459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_wchar, sym_identifier, [237] = 8, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(55), 1, + ACTIONS(65), 1, anon_sym_ARRAY, - STATE(1672), 1, + ACTIONS(67), 1, + anon_sym_SQUOTE, + ACTIONS(69), 1, + anon_sym_DQUOTE, + STATE(1124), 1, sym_type, - STATE(1685), 1, + STATE(1291), 1, sym_string, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(53), 6, + ACTIONS(63), 6, anon_sym_String, anon_sym_STRING, anon_sym_string, anon_sym_WString, anon_sym_WSTRING, anon_sym_wstring, - ACTIONS(51), 48, + ACTIONS(61), 48, anon_sym_BOOL, anon_sym_Bool, anon_sym_INT, @@ -11480,28 +12530,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_wchar, sym_identifier, [316] = 8, - ACTIONS(61), 1, - anon_sym_ARRAY, - ACTIONS(63), 1, - anon_sym_SQUOTE, ACTIONS(65), 1, + anon_sym_ARRAY, + ACTIONS(67), 1, + anon_sym_SQUOTE, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(1157), 1, - sym_type, - STATE(1160), 1, + STATE(1291), 1, sym_string, + STATE(1297), 1, + sym_type, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(59), 6, + ACTIONS(63), 6, anon_sym_String, anon_sym_STRING, anon_sym_string, anon_sym_WString, anon_sym_WSTRING, anon_sym_wstring, - ACTIONS(57), 48, + ACTIONS(61), 48, anon_sym_BOOL, anon_sym_Bool, anon_sym_INT, @@ -11550,163 +12600,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WCHAR, anon_sym_wchar, sym_identifier, - [395] = 30, - ACTIONS(67), 1, - ts_builtin_sym_end, - ACTIONS(69), 1, - anon_sym_ORGANIZATION_BLOCK, - ACTIONS(72), 1, - anon_sym_FUNCTION_BLOCK, - ACTIONS(75), 1, - anon_sym_FUNCTION, - ACTIONS(78), 1, - anon_sym_SEMI, - ACTIONS(84), 1, - anon_sym_VAR, - ACTIONS(87), 1, - anon_sym_VAR_TEMP, - ACTIONS(90), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(93), 1, - anon_sym_VAR_RETAIN, - ACTIONS(96), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(99), 1, - anon_sym_POUND, - ACTIONS(102), 1, - anon_sym_IF, - ACTIONS(105), 1, - anon_sym_CASE, - ACTIONS(108), 1, - anon_sym_FOR, - ACTIONS(111), 1, - anon_sym_WHILE, - ACTIONS(114), 1, - anon_sym_REPEAT, - ACTIONS(117), 1, - anon_sym_REGION, - ACTIONS(120), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DQUOTE, - ACTIONS(126), 1, - sym_identifier, - ACTIONS(129), 1, - anon_sym_EXIT, - ACTIONS(132), 1, - anon_sym_CONTINUE, - STATE(1530), 1, - sym_string, - STATE(1610), 1, - sym_prefixed_identifier, - STATE(1662), 1, - sym_lvalue, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(81), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(7), 5, - sym_organization_block, - sym_function_block, - sym_function, - sym_statement, - aux_sym_source_file_repeat1, - STATE(374), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [512] = 30, - ACTIONS(7), 1, - anon_sym_ORGANIZATION_BLOCK, - ACTIONS(9), 1, - anon_sym_FUNCTION_BLOCK, - ACTIONS(11), 1, - anon_sym_FUNCTION, - ACTIONS(13), 1, - anon_sym_SEMI, - ACTIONS(17), 1, - anon_sym_VAR, - ACTIONS(19), 1, - anon_sym_VAR_TEMP, - ACTIONS(21), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(23), 1, - anon_sym_VAR_RETAIN, - ACTIONS(25), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(29), 1, - anon_sym_IF, - ACTIONS(31), 1, - anon_sym_CASE, - ACTIONS(33), 1, - anon_sym_FOR, - ACTIONS(35), 1, - anon_sym_WHILE, - ACTIONS(37), 1, - anon_sym_REPEAT, - ACTIONS(39), 1, - anon_sym_REGION, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, + [395] = 8, ACTIONS(45), 1, - sym_identifier, + anon_sym_SQUOTE, ACTIONS(47), 1, - anon_sym_EXIT, - ACTIONS(49), 1, - anon_sym_CONTINUE, - ACTIONS(135), 1, - ts_builtin_sym_end, - STATE(1530), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + anon_sym_ARRAY, + STATE(1864), 1, sym_string, - STATE(1610), 1, + STATE(1875), 1, + sym_type, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(57), 6, + anon_sym_String, + anon_sym_STRING, + anon_sym_string, + anon_sym_WString, + anon_sym_WSTRING, + anon_sym_wstring, + ACTIONS(55), 48, + anon_sym_BOOL, + anon_sym_Bool, + anon_sym_INT, + anon_sym_Int, + anon_sym_int, + anon_sym_DINT, + anon_sym_DInt, + anon_sym_dint, + anon_sym_SINT, + anon_sym_SInt, + anon_sym_sint, + anon_sym_USINT, + anon_sym_USInt, + anon_sym_usint, + anon_sym_UINT, + anon_sym_UInt, + anon_sym_uint, + anon_sym_WORD, + anon_sym_Word, + anon_sym_word, + anon_sym_DWORD, + anon_sym_DWord, + anon_sym_dword, + anon_sym_BYTE, + anon_sym_Byte, + anon_sym_byte, + anon_sym_REAL, + anon_sym_Real, + anon_sym_real, + anon_sym_LREAL, + anon_sym_LReal, + anon_sym_lreal, + anon_sym_TIME, + anon_sym_Time, + anon_sym_time, + anon_sym_TOD, + anon_sym_Tod, + anon_sym_tod, + anon_sym_DT, + anon_sym_Dt, + anon_sym_dt, + anon_sym_Char, + anon_sym_CHAR, + anon_sym_char, + anon_sym_WChar, + anon_sym_WCHAR, + anon_sym_wchar, + sym_identifier, + [474] = 8, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + anon_sym_ARRAY, + STATE(1864), 1, + sym_string, + STATE(1885), 1, + sym_type, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(57), 6, + anon_sym_String, + anon_sym_STRING, + anon_sym_string, + anon_sym_WString, + anon_sym_WSTRING, + anon_sym_wstring, + ACTIONS(55), 48, + anon_sym_BOOL, + anon_sym_Bool, + anon_sym_INT, + anon_sym_Int, + anon_sym_int, + anon_sym_DINT, + anon_sym_DInt, + anon_sym_dint, + anon_sym_SINT, + anon_sym_SInt, + anon_sym_sint, + anon_sym_USINT, + anon_sym_USInt, + anon_sym_usint, + anon_sym_UINT, + anon_sym_UInt, + anon_sym_uint, + anon_sym_WORD, + anon_sym_Word, + anon_sym_word, + anon_sym_DWORD, + anon_sym_DWord, + anon_sym_dword, + anon_sym_BYTE, + anon_sym_Byte, + anon_sym_byte, + anon_sym_REAL, + anon_sym_Real, + anon_sym_real, + anon_sym_LREAL, + anon_sym_LReal, + anon_sym_lreal, + anon_sym_TIME, + anon_sym_Time, + anon_sym_time, + anon_sym_TOD, + anon_sym_Tod, + anon_sym_tod, + anon_sym_DT, + anon_sym_Dt, + anon_sym_dt, + anon_sym_Char, + anon_sym_CHAR, + anon_sym_char, + anon_sym_WChar, + anon_sym_WCHAR, + anon_sym_wchar, + sym_identifier, + [553] = 32, + ACTIONS(7), 1, + anon_sym_TYPE, + ACTIONS(9), 1, + anon_sym_DATA_BLOCK, + ACTIONS(11), 1, + anon_sym_ORGANIZATION_BLOCK, + ACTIONS(13), 1, + anon_sym_FUNCTION_BLOCK, + ACTIONS(15), 1, + anon_sym_FUNCTION, + ACTIONS(17), 1, + anon_sym_SEMI, + ACTIONS(21), 1, + anon_sym_VAR, + ACTIONS(23), 1, + anon_sym_VAR_TEMP, + ACTIONS(25), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(27), 1, + anon_sym_VAR_RETAIN, + ACTIONS(29), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_IF, + ACTIONS(35), 1, + anon_sym_CASE, + ACTIONS(37), 1, + anon_sym_FOR, + ACTIONS(39), 1, + anon_sym_WHILE, + ACTIONS(41), 1, + anon_sym_REPEAT, + ACTIONS(43), 1, + anon_sym_REGION, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_identifier, + ACTIONS(51), 1, + anon_sym_EXIT, + ACTIONS(53), 1, + anon_sym_CONTINUE, + ACTIONS(71), 1, + ts_builtin_sym_end, + STATE(1812), 1, sym_prefixed_identifier, - STATE(1662), 1, + STATE(1822), 1, + sym_string, + STATE(1838), 1, sym_lvalue, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(15), 3, + ACTIONS(19), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(7), 5, + STATE(10), 7, + sym_type_definition, + sym_data_block, sym_organization_block, sym_function_block, sym_function, sym_statement, aux_sym_source_file_repeat1, - STATE(374), 17, + STATE(361), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -11724,511 +12835,169 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [629] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, + [678] = 32, + ACTIONS(73), 1, + ts_builtin_sym_end, + ACTIONS(75), 1, + anon_sym_TYPE, + ACTIONS(78), 1, + anon_sym_DATA_BLOCK, + ACTIONS(81), 1, + anon_sym_ORGANIZATION_BLOCK, + ACTIONS(84), 1, + anon_sym_FUNCTION_BLOCK, + ACTIONS(87), 1, + anon_sym_FUNCTION, + ACTIONS(90), 1, anon_sym_SEMI, - ACTIONS(141), 1, + ACTIONS(96), 1, anon_sym_VAR, - ACTIONS(143), 1, + ACTIONS(99), 1, anon_sym_VAR_TEMP, - ACTIONS(145), 1, + ACTIONS(102), 1, anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, + ACTIONS(105), 1, anon_sym_VAR_RETAIN, - ACTIONS(149), 1, + ACTIONS(108), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, + ACTIONS(111), 1, + anon_sym_POUND, + ACTIONS(114), 1, anon_sym_IF, + ACTIONS(117), 1, + anon_sym_CASE, + ACTIONS(120), 1, + anon_sym_FOR, + ACTIONS(123), 1, + anon_sym_WHILE, + ACTIONS(126), 1, + anon_sym_REPEAT, + ACTIONS(129), 1, + anon_sym_REGION, + ACTIONS(132), 1, + anon_sym_SQUOTE, + ACTIONS(135), 1, + anon_sym_DQUOTE, + ACTIONS(138), 1, + sym_identifier, + ACTIONS(141), 1, + anon_sym_EXIT, + ACTIONS(144), 1, + anon_sym_CONTINUE, + STATE(1812), 1, + sym_prefixed_identifier, + STATE(1822), 1, + sym_string, + STATE(1838), 1, + sym_lvalue, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(93), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(10), 7, + sym_type_definition, + sym_data_block, + sym_organization_block, + sym_function_block, + sym_function, + sym_statement, + aux_sym_source_file_repeat1, + STATE(361), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [803] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, ACTIONS(153), 1, - anon_sym_END_IF, - ACTIONS(155), 1, - anon_sym_ELSIF, - ACTIONS(157), 1, - anon_sym_ELSE, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, - anon_sym_REPEAT, - ACTIONS(167), 1, - anon_sym_REGION, - ACTIONS(169), 1, - sym_identifier, - ACTIONS(171), 1, - anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(1708), 1, - sym_else_clause, - STATE(37), 2, - sym_statement, - aux_sym_organization_block_repeat2, - STATE(1292), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [747] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, + anon_sym_IF, ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_END_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, - anon_sym_CONTINUE, + anon_sym_WHILE, ACTIONS(175), 1, - anon_sym_END_IF, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(1711), 1, - sym_else_clause, - STATE(37), 2, - sym_statement, - aux_sym_organization_block_repeat2, - STATE(1273), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [865] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, - ACTIONS(155), 1, - anon_sym_ELSIF, - ACTIONS(157), 1, - anon_sym_ELSE, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, anon_sym_REPEAT, - ACTIONS(167), 1, - anon_sym_REGION, - ACTIONS(169), 1, - sym_identifier, - ACTIONS(171), 1, - anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, ACTIONS(177), 1, - anon_sym_END_IF, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(1752), 1, - sym_else_clause, - STATE(37), 2, - sym_statement, - aux_sym_organization_block_repeat2, - STATE(1281), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [983] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, - ACTIONS(155), 1, - anon_sym_ELSIF, - ACTIONS(157), 1, - anon_sym_ELSE, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, - anon_sym_REPEAT, - ACTIONS(167), 1, anon_sym_REGION, - ACTIONS(169), 1, - sym_identifier, - ACTIONS(171), 1, - anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, ACTIONS(179), 1, - anon_sym_END_IF, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(1794), 1, - sym_else_clause, - STATE(11), 2, - sym_statement, - aux_sym_organization_block_repeat2, - STATE(1271), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [1101] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, - ACTIONS(155), 1, - anon_sym_ELSIF, - ACTIONS(157), 1, - anon_sym_ELSE, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, - anon_sym_REPEAT, - ACTIONS(167), 1, - anon_sym_REGION, - ACTIONS(169), 1, sym_identifier, - ACTIONS(171), 1, - anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, ACTIONS(181), 1, - anon_sym_END_IF, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(1833), 1, - sym_else_clause, - STATE(10), 2, - sym_statement, - aux_sym_organization_block_repeat2, - STATE(1266), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [1219] = 31, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, - ACTIONS(155), 1, - anon_sym_ELSIF, - ACTIONS(157), 1, - anon_sym_ELSE, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, - anon_sym_REPEAT, - ACTIONS(167), 1, - anon_sym_REGION, - ACTIONS(169), 1, - sym_identifier, - ACTIONS(171), 1, anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, ACTIONS(183), 1, - anon_sym_END_IF, - STATE(1535), 1, + anon_sym_CONTINUE, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1839), 1, + STATE(1987), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1272), 2, + aux_sym_data_block_repeat1, + STATE(1420), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12246,76 +13015,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1337] = 31, - ACTIONS(27), 1, + [921] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(185), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1835), 1, + STATE(1918), 1, sym_else_clause, - STATE(17), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1263), 2, + aux_sym_data_block_repeat1, + STATE(1434), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12333,76 +13102,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1455] = 31, - ACTIONS(27), 1, + [1039] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(187), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1755), 1, + STATE(1952), 1, sym_else_clause, - STATE(14), 2, + STATE(20), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1275), 2, + aux_sym_data_block_repeat1, + STATE(1437), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12420,76 +13189,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1573] = 31, - ACTIONS(27), 1, + [1157] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(189), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1809), 1, + STATE(2038), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1282), 2, + aux_sym_data_block_repeat1, + STATE(1403), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12507,76 +13276,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1691] = 31, - ACTIONS(27), 1, + [1275] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(191), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1750), 1, + STATE(2042), 1, sym_else_clause, - STATE(19), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1291), 2, + aux_sym_data_block_repeat1, + STATE(1405), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12594,76 +13363,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1809] = 31, - ACTIONS(27), 1, + [1393] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(193), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1770), 1, + STATE(2070), 1, sym_else_clause, - STATE(37), 2, + STATE(17), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1290), 2, + aux_sym_data_block_repeat1, + STATE(1417), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12681,76 +13450,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [1927] = 31, - ACTIONS(27), 1, + [1511] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(195), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1771), 1, + STATE(2134), 1, sym_else_clause, - STATE(21), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1269), 2, + aux_sym_data_block_repeat1, + STATE(1416), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12768,76 +13537,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2045] = 31, - ACTIONS(27), 1, + [1629] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(197), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1780), 1, + STATE(1981), 1, sym_else_clause, - STATE(37), 2, + STATE(15), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1280), 2, + aux_sym_data_block_repeat1, + STATE(1414), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12855,76 +13624,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2163] = 31, - ACTIONS(27), 1, + [1747] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(199), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1797), 1, + STATE(2077), 1, sym_else_clause, - STATE(23), 2, + STATE(14), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1278), 2, + aux_sym_data_block_repeat1, + STATE(1429), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -12942,76 +13711,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2281] = 31, - ACTIONS(27), 1, + [1865] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(201), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1736), 1, + STATE(1968), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1288), 2, + aux_sym_data_block_repeat1, + STATE(1418), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13029,76 +13798,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2399] = 31, - ACTIONS(27), 1, + [1983] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(203), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1707), 1, + STATE(2088), 1, sym_else_clause, - STATE(25), 2, + STATE(22), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1274), 2, + aux_sym_data_block_repeat1, + STATE(1410), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13116,76 +13885,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2517] = 31, - ACTIONS(27), 1, + [2101] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(205), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1742), 1, + STATE(2095), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1283), 2, + aux_sym_data_block_repeat1, + STATE(1426), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13203,76 +13972,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2635] = 31, - ACTIONS(27), 1, + [2219] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(207), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1731), 1, + STATE(2021), 1, sym_else_clause, - STATE(27), 2, + STATE(24), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1289), 2, + aux_sym_data_block_repeat1, + STATE(1438), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13290,76 +14059,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2753] = 31, - ACTIONS(27), 1, + [2337] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(209), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1739), 1, + STATE(1931), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1285), 2, + aux_sym_data_block_repeat1, + STATE(1412), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13377,76 +14146,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2871] = 31, - ACTIONS(27), 1, + [2455] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(211), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1773), 1, + STATE(2029), 1, sym_else_clause, - STATE(29), 2, + STATE(26), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1258), 2, + aux_sym_data_block_repeat1, + STATE(1409), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13464,76 +14233,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [2989] = 31, - ACTIONS(27), 1, + [2573] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(213), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1718), 1, + STATE(1905), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1262), 2, + aux_sym_data_block_repeat1, + STATE(1415), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13551,76 +14320,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [3107] = 31, - ACTIONS(27), 1, + [2691] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(215), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1832), 1, + STATE(2067), 1, sym_else_clause, - STATE(31), 2, + STATE(28), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1293), 2, + aux_sym_data_block_repeat1, + STATE(1421), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13638,76 +14407,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [3225] = 31, - ACTIONS(27), 1, + [2809] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(217), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1842), 1, + STATE(1908), 1, sym_else_clause, - STATE(37), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1276), 2, + aux_sym_data_block_repeat1, + STATE(1430), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13725,76 +14494,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [3343] = 31, - ACTIONS(27), 1, + [2927] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, ACTIONS(155), 1, - anon_sym_ELSIF, + anon_sym_VAR_CONSTANT, ACTIONS(157), 1, - anon_sym_ELSE, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, ACTIONS(219), 1, anon_sym_END_IF, - STATE(1535), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(1852), 1, + STATE(2050), 1, sym_else_clause, - STATE(9), 2, + STATE(30), 2, sym_statement, - aux_sym_organization_block_repeat2, - STATE(1287), 2, + aux_sym_data_block_repeat1, + STATE(1419), 2, sym_elsif_clause, aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13812,69 +14581,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [3461] = 27, - ACTIONS(27), 1, + [3045] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_SEMI, ACTIONS(151), 1, - anon_sym_IF, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, ACTIONS(159), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, + anon_sym_IF, ACTIONS(165), 1, - anon_sym_REPEAT, + anon_sym_ELSIF, ACTIONS(167), 1, - anon_sym_REGION, + anon_sym_ELSE, ACTIONS(169), 1, - sym_identifier, + anon_sym_CASE, ACTIONS(171), 1, - anon_sym_EXIT, + anon_sym_FOR, ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, anon_sym_CONTINUE, - STATE(1535), 1, + ACTIONS(221), 1, + anon_sym_END_IF, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1536), 1, + STATE(1738), 1, sym_string, - STATE(1659), 1, + STATE(1860), 1, sym_lvalue, - STATE(35), 2, + STATE(1988), 1, + sym_else_clause, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, + STATE(1424), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(139), 3, + ACTIONS(149), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - ACTIONS(221), 3, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(419), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -13892,626 +14668,592 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [3568] = 28, - ACTIONS(223), 1, - anon_sym_SEMI, - ACTIONS(229), 1, - anon_sym_VAR, - ACTIONS(232), 1, - anon_sym_VAR_TEMP, - ACTIONS(235), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(238), 1, - anon_sym_VAR_RETAIN, - ACTIONS(241), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(244), 1, + [3163] = 31, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(247), 1, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, anon_sym_IF, - ACTIONS(252), 1, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, anon_sym_CASE, - ACTIONS(255), 1, + ACTIONS(171), 1, anon_sym_FOR, - ACTIONS(258), 1, + ACTIONS(173), 1, anon_sym_WHILE, - ACTIONS(261), 1, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(223), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(1969), 1, + sym_else_clause, + STATE(11), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1413), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3281] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(225), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(2002), 1, + sym_else_clause, + STATE(39), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1435), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3399] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(227), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(2027), 1, + sym_else_clause, + STATE(32), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1431), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3517] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(229), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(1955), 1, + sym_else_clause, + STATE(39), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1407), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3635] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(231), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(1939), 1, + sym_else_clause, + STATE(34), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1428), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3753] = 31, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(165), 1, + anon_sym_ELSIF, + ACTIONS(167), 1, + anon_sym_ELSE, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + ACTIONS(233), 1, + anon_sym_END_IF, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(2103), 1, + sym_else_clause, + STATE(12), 2, + sym_statement, + aux_sym_data_block_repeat1, + STATE(1439), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [3871] = 28, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(235), 1, + anon_sym_SEMI, + ACTIONS(239), 1, + anon_sym_VAR, + ACTIONS(241), 1, + anon_sym_VAR_TEMP, + ACTIONS(243), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(245), 1, + anon_sym_VAR_RETAIN, + ACTIONS(247), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(252), 1, + anon_sym_IF, + ACTIONS(256), 1, + anon_sym_CASE, + ACTIONS(258), 1, + anon_sym_FOR, + ACTIONS(260), 1, + anon_sym_WHILE, + ACTIONS(262), 1, anon_sym_REPEAT, ACTIONS(264), 1, anon_sym_REGION, - ACTIONS(267), 1, + ACTIONS(266), 1, sym_number, - ACTIONS(269), 1, - anon_sym_SQUOTE, - ACTIONS(272), 1, - anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(271), 1, anon_sym_EXIT, - ACTIONS(281), 1, + ACTIONS(273), 1, anon_sym_CONTINUE, - STATE(1567), 1, + STATE(1770), 1, sym_prefixed_identifier, - STATE(1568), 1, + STATE(1771), 1, sym_string, - STATE(1667), 1, + STATE(1852), 1, sym_lvalue, - ACTIONS(250), 2, + ACTIONS(254), 2, anon_sym_ELSE, anon_sym_END_CASE, - STATE(34), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(226), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(391), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [3677] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(137), 1, - anon_sym_SEMI, - ACTIONS(141), 1, - anon_sym_VAR, - ACTIONS(143), 1, - anon_sym_VAR_TEMP, - ACTIONS(145), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(147), 1, - anon_sym_VAR_RETAIN, - ACTIONS(149), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(151), 1, - anon_sym_IF, - ACTIONS(159), 1, - anon_sym_CASE, - ACTIONS(161), 1, - anon_sym_FOR, - ACTIONS(163), 1, - anon_sym_WHILE, - ACTIONS(165), 1, - anon_sym_REPEAT, - ACTIONS(167), 1, - anon_sym_REGION, - ACTIONS(169), 1, - sym_identifier, - ACTIONS(171), 1, - anon_sym_EXIT, - ACTIONS(173), 1, - anon_sym_CONTINUE, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(37), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(139), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - ACTIONS(284), 3, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [3784] = 28, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(286), 1, - anon_sym_SEMI, - ACTIONS(290), 1, - anon_sym_VAR, - ACTIONS(292), 1, - anon_sym_VAR_TEMP, - ACTIONS(294), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(296), 1, - anon_sym_VAR_RETAIN, - ACTIONS(298), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(300), 1, - anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_IF, - ACTIONS(307), 1, - anon_sym_CASE, - ACTIONS(309), 1, - anon_sym_FOR, - ACTIONS(311), 1, - anon_sym_WHILE, - ACTIONS(313), 1, - anon_sym_REPEAT, - ACTIONS(315), 1, - anon_sym_REGION, - ACTIONS(317), 1, - sym_number, - ACTIONS(319), 1, - sym_identifier, - ACTIONS(322), 1, - anon_sym_EXIT, - ACTIONS(324), 1, - anon_sym_CONTINUE, - STATE(1567), 1, - sym_prefixed_identifier, - STATE(1568), 1, - sym_string, - STATE(1667), 1, - sym_lvalue, - ACTIONS(305), 2, - anon_sym_ELSE, - anon_sym_END_CASE, - STATE(34), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(288), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(391), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [3893] = 27, - ACTIONS(244), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_SQUOTE, - ACTIONS(272), 1, - anon_sym_DQUOTE, - ACTIONS(326), 1, - anon_sym_SEMI, - ACTIONS(332), 1, - anon_sym_VAR, - ACTIONS(335), 1, - anon_sym_VAR_TEMP, - ACTIONS(338), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(341), 1, - anon_sym_VAR_RETAIN, - ACTIONS(344), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(347), 1, - anon_sym_IF, - ACTIONS(350), 1, - anon_sym_CASE, - ACTIONS(353), 1, - anon_sym_FOR, - ACTIONS(356), 1, - anon_sym_WHILE, - ACTIONS(359), 1, - anon_sym_REPEAT, - ACTIONS(362), 1, - anon_sym_REGION, - ACTIONS(365), 1, - sym_identifier, - ACTIONS(368), 1, - anon_sym_EXIT, - ACTIONS(371), 1, - anon_sym_CONTINUE, - STATE(1535), 1, - sym_prefixed_identifier, - STATE(1536), 1, - sym_string, - STATE(1659), 1, - sym_lvalue, - STATE(37), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(250), 3, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - ACTIONS(329), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(419), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4000] = 28, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(286), 1, - anon_sym_SEMI, - ACTIONS(290), 1, - anon_sym_VAR, - ACTIONS(292), 1, - anon_sym_VAR_TEMP, - ACTIONS(294), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(296), 1, - anon_sym_VAR_RETAIN, - ACTIONS(298), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(303), 1, - anon_sym_IF, - ACTIONS(307), 1, - anon_sym_CASE, - ACTIONS(309), 1, - anon_sym_FOR, - ACTIONS(311), 1, - anon_sym_WHILE, - ACTIONS(313), 1, - anon_sym_REPEAT, - ACTIONS(315), 1, - anon_sym_REGION, - ACTIONS(322), 1, - anon_sym_EXIT, - ACTIONS(324), 1, - anon_sym_CONTINUE, - ACTIONS(374), 1, - anon_sym_POUND, - ACTIONS(379), 1, - sym_number, - ACTIONS(381), 1, - sym_identifier, - STATE(1567), 1, - sym_prefixed_identifier, - STATE(1568), 1, - sym_string, - STATE(1667), 1, - sym_lvalue, - ACTIONS(377), 2, - anon_sym_ELSE, - anon_sym_END_CASE, - STATE(36), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(288), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(391), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4109] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_END_ORGANIZATION_BLOCK, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(107), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4214] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(440), 1, - anon_sym_END_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(49), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4319] = 27, - ACTIONS(244), 1, - anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_UNTIL, - ACTIONS(269), 1, - anon_sym_SQUOTE, - ACTIONS(272), 1, - anon_sym_DQUOTE, - ACTIONS(452), 1, - anon_sym_SEMI, - ACTIONS(458), 1, - anon_sym_VAR, - ACTIONS(461), 1, - anon_sym_VAR_TEMP, - ACTIONS(464), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(467), 1, - anon_sym_VAR_RETAIN, - ACTIONS(470), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(473), 1, - anon_sym_IF, - ACTIONS(476), 1, - anon_sym_CASE, - ACTIONS(479), 1, - anon_sym_FOR, - ACTIONS(482), 1, - anon_sym_WHILE, - ACTIONS(485), 1, - anon_sym_REPEAT, - ACTIONS(488), 1, - anon_sym_REGION, - ACTIONS(491), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_EXIT, - ACTIONS(497), 1, - anon_sym_CONTINUE, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, STATE(41), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(455), 3, + ACTIONS(237), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(543), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -14529,67 +15271,70 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [4424] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, + [3980] = 28, + ACTIONS(275), 1, anon_sym_SEMI, - ACTIONS(504), 1, + ACTIONS(281), 1, anon_sym_VAR, - ACTIONS(506), 1, + ACTIONS(284), 1, anon_sym_VAR_TEMP, - ACTIONS(508), 1, + ACTIONS(287), 1, anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, + ACTIONS(290), 1, anon_sym_VAR_RETAIN, - ACTIONS(512), 1, + ACTIONS(293), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, + ACTIONS(296), 1, + anon_sym_POUND, + ACTIONS(299), 1, anon_sym_IF, - ACTIONS(516), 1, + ACTIONS(304), 1, anon_sym_CASE, - ACTIONS(518), 1, + ACTIONS(307), 1, anon_sym_FOR, - ACTIONS(520), 1, + ACTIONS(310), 1, anon_sym_WHILE, - ACTIONS(522), 1, + ACTIONS(313), 1, anon_sym_REPEAT, - ACTIONS(524), 1, + ACTIONS(316), 1, anon_sym_REGION, - ACTIONS(526), 1, - anon_sym_END_REGION, - ACTIONS(528), 1, + ACTIONS(319), 1, + sym_number, + ACTIONS(321), 1, + anon_sym_SQUOTE, + ACTIONS(324), 1, + anon_sym_DQUOTE, + ACTIONS(327), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(330), 1, anon_sym_EXIT, - ACTIONS(532), 1, + ACTIONS(333), 1, anon_sym_CONTINUE, - STATE(1501), 1, + STATE(1770), 1, sym_prefixed_identifier, - STATE(1502), 1, + STATE(1771), 1, sym_string, - STATE(1650), 1, + STATE(1852), 1, sym_lvalue, - STATE(104), 2, + ACTIONS(302), 2, + anon_sym_ELSE, + anon_sym_END_CASE, + STATE(38), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(502), 3, + ACTIONS(278), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(521), 17, + STATE(543), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -14607,457 +15352,69 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [4529] = 27, - ACTIONS(27), 1, + [4089] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_END_ORGANIZATION_BLOCK, - ACTIONS(386), 1, + ACTIONS(336), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(342), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(345), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(348), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(351), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(354), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(357), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(360), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(363), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(366), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(369), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(372), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(378), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(381), 1, anon_sym_CONTINUE, - STATE(1511), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1738), 1, sym_string, - STATE(1651), 1, + STATE(1860), 1, sym_lvalue, - STATE(50), 2, + STATE(39), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4634] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(534), 1, - anon_sym_END_FUNCTION_BLOCK, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(108), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4739] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(534), 1, - anon_sym_END_FUNCTION_BLOCK, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(52), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4844] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(568), 1, - anon_sym_END_FUNCTION, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(109), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [4949] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(568), 1, - anon_sym_END_FUNCTION, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(55), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [5054] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(602), 1, - anon_sym_SEMI, - ACTIONS(606), 1, - anon_sym_VAR, - ACTIONS(608), 1, - anon_sym_VAR_TEMP, - ACTIONS(610), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(612), 1, - anon_sym_VAR_RETAIN, - ACTIONS(614), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(616), 1, - anon_sym_IF, - ACTIONS(618), 1, + ACTIONS(302), 3, anon_sym_END_IF, - ACTIONS(620), 1, - anon_sym_CASE, - ACTIONS(622), 1, - anon_sym_FOR, - ACTIONS(624), 1, - anon_sym_WHILE, - ACTIONS(626), 1, - anon_sym_REPEAT, - ACTIONS(628), 1, - anon_sym_REGION, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_EXIT, - ACTIONS(634), 1, - anon_sym_CONTINUE, - STATE(1547), 1, - sym_prefixed_identifier, - STATE(1548), 1, - sym_string, - STATE(1663), 1, - sym_lvalue, - STATE(56), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(604), 3, + anon_sym_ELSIF, + anon_sym_ELSE, + ACTIONS(339), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(553), 17, + STATE(499), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15075,67 +15432,464 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5159] = 27, - ACTIONS(27), 1, + [4196] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(418), 1, + ACTIONS(147), 1, anon_sym_SEMI, - ACTIONS(422), 1, + ACTIONS(151), 1, anon_sym_VAR, - ACTIONS(424), 1, + ACTIONS(153), 1, anon_sym_VAR_TEMP, - ACTIONS(426), 1, + ACTIONS(155), 1, anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, + ACTIONS(157), 1, anon_sym_VAR_RETAIN, - ACTIONS(430), 1, + ACTIONS(159), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, + ACTIONS(161), 1, anon_sym_IF, - ACTIONS(434), 1, + ACTIONS(169), 1, anon_sym_CASE, - ACTIONS(436), 1, + ACTIONS(171), 1, anon_sym_FOR, - ACTIONS(438), 1, + ACTIONS(173), 1, anon_sym_WHILE, - ACTIONS(442), 1, + ACTIONS(175), 1, anon_sym_REPEAT, - ACTIONS(444), 1, + ACTIONS(177), 1, anon_sym_REGION, - ACTIONS(446), 1, + ACTIONS(179), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(181), 1, anon_sym_EXIT, - ACTIONS(450), 1, + ACTIONS(183), 1, anon_sym_CONTINUE, - ACTIONS(636), 1, - anon_sym_END_WHILE, - STATE(1542), 1, + STATE(1737), 1, sym_prefixed_identifier, - STATE(1543), 1, + STATE(1738), 1, sym_string, - STATE(1660), 1, + STATE(1860), 1, + sym_lvalue, + STATE(42), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + ACTIONS(384), 3, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4303] = 28, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(235), 1, + anon_sym_SEMI, + ACTIONS(239), 1, + anon_sym_VAR, + ACTIONS(241), 1, + anon_sym_VAR_TEMP, + ACTIONS(243), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(245), 1, + anon_sym_VAR_RETAIN, + ACTIONS(247), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(252), 1, + anon_sym_IF, + ACTIONS(256), 1, + anon_sym_CASE, + ACTIONS(258), 1, + anon_sym_FOR, + ACTIONS(260), 1, + anon_sym_WHILE, + ACTIONS(262), 1, + anon_sym_REPEAT, + ACTIONS(264), 1, + anon_sym_REGION, + ACTIONS(271), 1, + anon_sym_EXIT, + ACTIONS(273), 1, + anon_sym_CONTINUE, + ACTIONS(386), 1, + anon_sym_POUND, + ACTIONS(391), 1, + sym_number, + ACTIONS(393), 1, + sym_identifier, + STATE(1770), 1, + sym_prefixed_identifier, + STATE(1771), 1, + sym_string, + STATE(1852), 1, + sym_lvalue, + ACTIONS(389), 2, + anon_sym_ELSE, + anon_sym_END_CASE, + STATE(38), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(237), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(543), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4412] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SEMI, + ACTIONS(151), 1, + anon_sym_VAR, + ACTIONS(153), 1, + anon_sym_VAR_TEMP, + ACTIONS(155), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(157), 1, + anon_sym_VAR_RETAIN, + ACTIONS(159), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(161), 1, + anon_sym_IF, + ACTIONS(169), 1, + anon_sym_CASE, + ACTIONS(171), 1, + anon_sym_FOR, + ACTIONS(173), 1, + anon_sym_WHILE, + ACTIONS(175), 1, + anon_sym_REPEAT, + ACTIONS(177), 1, + anon_sym_REGION, + ACTIONS(179), 1, + sym_identifier, + ACTIONS(181), 1, + anon_sym_EXIT, + ACTIONS(183), 1, + anon_sym_CONTINUE, + STATE(1737), 1, + sym_prefixed_identifier, + STATE(1738), 1, + sym_string, + STATE(1860), 1, + sym_lvalue, + STATE(39), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(149), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + ACTIONS(396), 3, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(499), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4519] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(418), 1, + anon_sym_END_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(146), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4624] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(432), 1, + anon_sym_END_FUNCTION, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(54), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4729] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(432), 1, + anon_sym_END_FUNCTION, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, sym_lvalue, STATE(110), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(420), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(509), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15153,67 +15907,301 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5264] = 27, - ACTIONS(27), 1, + [4834] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(492), 1, + anon_sym_END_REGION, + ACTIONS(494), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, - ACTIONS(638), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1703), 1, sym_string, - STATE(1651), 1, + STATE(1858), 1, + sym_lvalue, + STATE(115), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [4939] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(500), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(148), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [5044] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + anon_sym_END_DATA_BLOCK, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(57), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [5149] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + anon_sym_END_DATA_BLOCK, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, sym_lvalue, STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15231,145 +16219,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5369] = 27, - ACTIONS(27), 1, + [5254] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(638), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(58), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [5474] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, ACTIONS(536), 1, + anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(640), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15387,223 +16297,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5579] = 27, - ACTIONS(27), 1, + [5359] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, ACTIONS(536), 1, + anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(640), 1, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(59), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [5464] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(60), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [5684] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - ACTIONS(642), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(62), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [5789] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(642), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15621,67 +16453,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5894] = 27, - ACTIONS(27), 1, + [5569] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, + ACTIONS(570), 1, + anon_sym_END_FUNCTION_BLOCK, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, ACTIONS(602), 1, - anon_sym_SEMI, - ACTIONS(606), 1, - anon_sym_VAR, - ACTIONS(608), 1, - anon_sym_VAR_TEMP, - ACTIONS(610), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(612), 1, - anon_sym_VAR_RETAIN, - ACTIONS(614), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(616), 1, - anon_sym_IF, - ACTIONS(620), 1, - anon_sym_CASE, - ACTIONS(622), 1, - anon_sym_FOR, - ACTIONS(624), 1, - anon_sym_WHILE, - ACTIONS(626), 1, - anon_sym_REPEAT, - ACTIONS(628), 1, - anon_sym_REGION, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_EXIT, - ACTIONS(634), 1, anon_sym_CONTINUE, - ACTIONS(644), 1, - anon_sym_END_IF, - STATE(1547), 1, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1548), 1, + STATE(1718), 1, sym_string, - STATE(1663), 1, + STATE(1848), 1, sym_lvalue, - STATE(111), 2, + STATE(61), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(604), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(553), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15699,67 +16531,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [5999] = 27, - ACTIONS(27), 1, + [5674] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(646), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(604), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1728), 1, sym_string, - STATE(1651), 1, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [5779] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(604), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, sym_lvalue, STATE(63), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15777,145 +16687,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [6104] = 27, - ACTIONS(27), 1, + [5884] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(646), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(107), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [6209] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, - ACTIONS(648), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(606), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1780), 1, sym_string, - STATE(1656), 1, + STATE(1854), 1, sym_lvalue, STATE(65), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -15933,67 +16765,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [6314] = 27, - ACTIONS(27), 1, + [5989] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(648), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(608), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1707), 1, sym_string, - STATE(1656), 1, + STATE(1834), 1, sym_lvalue, - STATE(108), 2, + STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16011,67 +16843,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [6419] = 27, - ACTIONS(27), 1, + [6094] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(650), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(608), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1707), 1, sym_string, - STATE(1657), 1, + STATE(1834), 1, sym_lvalue, STATE(67), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16089,301 +16921,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [6524] = 27, - ACTIONS(27), 1, + [6199] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - ACTIONS(650), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(109), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [6629] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(652), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(107), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [6734] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(652), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(70), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [6839] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(654), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(610), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16401,67 +16999,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [6944] = 27, - ACTIONS(27), 1, + [6304] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(654), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(610), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, sym_lvalue, - STATE(72), 2, + STATE(69), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16479,67 +17077,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7049] = 27, - ACTIONS(27), 1, + [6409] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(656), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(612), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16557,67 +17155,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7154] = 27, - ACTIONS(27), 1, + [6514] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(656), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(612), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, - STATE(74), 2, + STATE(71), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16635,67 +17233,301 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7259] = 27, - ACTIONS(27), 1, + [6619] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(678), 1, - anon_sym_END_FOR, - ACTIONS(680), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - STATE(1576), 1, + ACTIONS(614), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1728), 1, sym_string, - STATE(1668), 1, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [6724] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(614), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(73), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [6829] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(616), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [6934] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(618), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, sym_lvalue, STATE(76), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16713,67 +17545,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7364] = 27, - ACTIONS(27), 1, + [7039] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(692), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(618), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1707), 1, sym_string, - STATE(1651), 1, + STATE(1834), 1, sym_lvalue, STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16791,145 +17623,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7469] = 27, - ACTIONS(27), 1, + [7144] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(692), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(78), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [7574] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(694), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(620), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, + sym_lvalue, + STATE(77), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [7249] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(620), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -16947,145 +17779,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7679] = 27, - ACTIONS(27), 1, + [7354] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - ACTIONS(694), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(80), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [7784] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(696), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(622), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, + sym_lvalue, + STATE(79), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [7459] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(622), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17103,67 +17935,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7889] = 27, - ACTIONS(27), 1, + [7564] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(696), 1, + ACTIONS(624), 1, anon_sym_END_FUNCTION, - STATE(1527), 1, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1728), 1, sym_string, - STATE(1657), 1, + STATE(1855), 1, sym_lvalue, - STATE(82), 2, + STATE(81), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17181,67 +18013,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [7994] = 27, - ACTIONS(27), 1, + [7669] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(680), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(698), 1, - anon_sym_END_FOR, - STATE(1576), 1, + ACTIONS(624), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1728), 1, sym_string, - STATE(1668), 1, + STATE(1855), 1, sym_lvalue, - STATE(113), 2, + STATE(110), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17259,67 +18091,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8099] = 27, - ACTIONS(27), 1, + [7774] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, + anon_sym_SEMI, ACTIONS(402), 1, - anon_sym_CASE, + anon_sym_VAR, ACTIONS(404), 1, - anon_sym_FOR, + anon_sym_VAR_TEMP, ACTIONS(406), 1, - anon_sym_WHILE, + anon_sym_VAR_CONSTANT, ACTIONS(408), 1, - anon_sym_REPEAT, + anon_sym_VAR_RETAIN, ACTIONS(410), 1, - anon_sym_REGION, + anon_sym_VAR_NON_RETAIN, ACTIONS(412), 1, - sym_identifier, + anon_sym_IF, ACTIONS(414), 1, - anon_sym_EXIT, + anon_sym_CASE, ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, anon_sym_CONTINUE, - ACTIONS(700), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(626), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1780), 1, sym_string, - STATE(1651), 1, + STATE(1854), 1, sym_lvalue, STATE(84), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17337,67 +18169,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8204] = 27, - ACTIONS(27), 1, + [7879] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(700), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(628), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1707), 1, sym_string, - STATE(1651), 1, + STATE(1834), 1, + sym_lvalue, + STATE(85), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [7984] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(628), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, sym_lvalue, STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17415,145 +18325,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8309] = 27, - ACTIONS(27), 1, + [8089] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - ACTIONS(702), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(86), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [8414] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(546), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(550), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(552), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(554), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(556), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(558), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(560), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(562), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(564), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(702), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(630), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17571,67 +18403,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8519] = 27, - ACTIONS(27), 1, + [8194] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(542), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(544), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(546), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(548), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(550), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(552), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(554), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(556), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(558), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(560), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(562), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(564), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(566), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(704), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(630), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1713), 1, sym_string, - STATE(1657), 1, + STATE(1842), 1, sym_lvalue, - STATE(88), 2, + STATE(87), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17649,67 +18481,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8624] = 27, - ACTIONS(27), 1, + [8299] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(704), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(632), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17727,67 +18559,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8729] = 27, - ACTIONS(27), 1, + [8404] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(576), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(578), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(580), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(582), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(584), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(586), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(588), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(590), 1, anon_sym_FOR, - ACTIONS(680), 1, + ACTIONS(592), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(594), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(596), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(600), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(706), 1, - anon_sym_END_FOR, - STATE(1576), 1, + ACTIONS(632), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1718), 1, sym_string, - STATE(1668), 1, + STATE(1848), 1, sym_lvalue, - STATE(90), 2, + STATE(89), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17805,67 +18637,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8834] = 27, - ACTIONS(27), 1, + [8509] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(708), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(634), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1728), 1, sym_string, - STATE(1651), 1, + STATE(1855), 1, sym_lvalue, - STATE(107), 2, + STATE(110), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17883,67 +18715,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [8939] = 27, - ACTIONS(27), 1, + [8614] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(708), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(634), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1728), 1, sym_string, - STATE(1651), 1, + STATE(1855), 1, sym_lvalue, STATE(91), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -17961,67 +18793,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9044] = 27, - ACTIONS(27), 1, + [8719] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(636), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(640), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(646), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(648), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(650), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(652), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(654), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(656), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(658), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(660), 1, + anon_sym_UNTIL, + ACTIONS(662), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(666), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(668), 1, anon_sym_CONTINUE, - ACTIONS(710), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + STATE(1691), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1692), 1, sym_string, - STATE(1656), 1, + STATE(1846), 1, sym_lvalue, - STATE(108), 2, + STATE(111), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(638), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(901), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18039,67 +18871,223 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9149] = 27, - ACTIONS(27), 1, + [8824] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, - ACTIONS(710), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(670), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1780), 1, sym_string, - STATE(1656), 1, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [8929] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(672), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(107), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [9034] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(672), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, sym_lvalue, STATE(93), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18117,67 +19105,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9254] = 27, - ACTIONS(27), 1, + [9139] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(542), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(544), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(546), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(548), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(550), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(552), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(554), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(556), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(558), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(560), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(562), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(564), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(566), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(712), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(674), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1713), 1, sym_string, - STATE(1657), 1, + STATE(1842), 1, sym_lvalue, - STATE(109), 2, + STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18195,67 +19183,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9359] = 27, - ACTIONS(27), 1, + [9244] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(542), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(544), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(546), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(548), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(550), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(552), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(554), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(556), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(558), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(560), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(562), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(564), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(566), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_CONTINUE, - ACTIONS(712), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(674), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1713), 1, sym_string, - STATE(1657), 1, + STATE(1842), 1, sym_lvalue, STATE(95), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18273,67 +19261,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9464] = 27, - ACTIONS(27), 1, + [9349] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(576), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(578), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(580), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(582), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(584), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(586), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(588), 1, anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(714), 1, - anon_sym_END_FOR, - STATE(1576), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1718), 1, sym_string, - STATE(1668), 1, + STATE(1848), 1, sym_lvalue, - STATE(113), 2, + STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18351,67 +19339,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9569] = 27, - ACTIONS(27), 1, + [9454] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(576), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(578), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(580), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(582), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(584), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(586), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(588), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(590), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(592), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(594), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(596), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(600), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(716), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(676), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1718), 1, sym_string, - STATE(1651), 1, + STATE(1848), 1, sym_lvalue, - STATE(107), 2, + STATE(96), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18429,67 +19417,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9674] = 27, - ACTIONS(27), 1, + [9559] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(390), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(392), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(394), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(398), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(402), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(404), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(406), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(408), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(410), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(412), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(414), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(416), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(716), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, + ACTIONS(678), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1728), 1, sym_string, - STATE(1651), 1, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [9664] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(678), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, sym_lvalue, STATE(97), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18507,379 +19573,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [9779] = 27, - ACTIONS(27), 1, + [9769] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(718), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(680), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1707), 1, sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(108), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [9884] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - ACTIONS(718), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(98), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [9989] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - ACTIONS(720), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(109), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [10094] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, - ACTIONS(576), 1, - anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - ACTIONS(720), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(99), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [10199] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(722), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, + STATE(1834), 1, sym_lvalue, STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(388), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18897,67 +19651,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10304] = 27, - ACTIONS(27), 1, + [9874] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(540), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(542), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(544), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(548), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(552), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(554), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(556), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(558), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(560), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(562), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(566), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(724), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, + ACTIONS(680), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1707), 1, sym_string, - STATE(1656), 1, + STATE(1834), 1, + sym_lvalue, + STATE(99), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [9979] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(682), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(538), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -18975,67 +19807,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10409] = 27, - ACTIONS(27), 1, + [10084] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(574), 1, - anon_sym_VAR, ACTIONS(576), 1, - anon_sym_VAR_TEMP, + anon_sym_VAR, ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR_TEMP, ACTIONS(580), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_RETAIN, ACTIONS(584), 1, - anon_sym_IF, + anon_sym_VAR_NON_RETAIN, ACTIONS(586), 1, - anon_sym_CASE, + anon_sym_IF, ACTIONS(588), 1, - anon_sym_FOR, + anon_sym_CASE, ACTIONS(590), 1, - anon_sym_WHILE, + anon_sym_FOR, ACTIONS(592), 1, - anon_sym_REPEAT, + anon_sym_WHILE, ACTIONS(594), 1, - anon_sym_REGION, + anon_sym_REPEAT, ACTIONS(596), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(598), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, anon_sym_CONTINUE, - ACTIONS(726), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(684), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19053,67 +19885,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10514] = 27, - ACTIONS(27), 1, + [10189] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(726), 1, + ACTIONS(686), 1, anon_sym_END_FUNCTION, - STATE(1527), 1, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1728), 1, sym_string, - STATE(1657), 1, + STATE(1855), 1, sym_lvalue, - STATE(101), 2, + STATE(110), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19131,67 +19963,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10619] = 27, - ACTIONS(27), 1, + [10294] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(434), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(438), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(440), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(442), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(444), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(446), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(448), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(450), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(452), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(454), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(456), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(458), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(460), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(462), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(464), 1, anon_sym_CONTINUE, - ACTIONS(728), 1, + ACTIONS(686), 1, anon_sym_END_FUNCTION, - STATE(1527), 1, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1728), 1, sym_string, - STATE(1657), 1, + STATE(1855), 1, sym_lvalue, - STATE(109), 2, + STATE(100), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19209,67 +20041,379 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10724] = 27, - ACTIONS(27), 1, + [10399] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(504), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(508), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(510), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(512), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(514), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(516), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(518), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(520), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(522), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(524), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(526), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(528), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(530), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(532), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(534), 1, anon_sym_CONTINUE, - ACTIONS(728), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, + ACTIONS(688), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1707), 1, sym_string, - STATE(1657), 1, + STATE(1834), 1, + sym_lvalue, + STATE(107), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [10504] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(690), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [10609] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(690), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(102), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [10714] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(692), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [10819] = 27, + ACTIONS(296), 1, + anon_sym_POUND, + ACTIONS(302), 1, + anon_sym_END_REGION, + ACTIONS(321), 1, + anon_sym_SQUOTE, + ACTIONS(324), 1, + anon_sym_DQUOTE, + ACTIONS(694), 1, + anon_sym_SEMI, + ACTIONS(700), 1, + anon_sym_VAR, + ACTIONS(703), 1, + anon_sym_VAR_TEMP, + ACTIONS(706), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(709), 1, + anon_sym_VAR_RETAIN, + ACTIONS(712), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(715), 1, + anon_sym_IF, + ACTIONS(718), 1, + anon_sym_CASE, + ACTIONS(721), 1, + anon_sym_FOR, + ACTIONS(724), 1, + anon_sym_WHILE, + ACTIONS(727), 1, + anon_sym_REPEAT, + ACTIONS(730), 1, + anon_sym_REGION, + ACTIONS(733), 1, + sym_identifier, + ACTIONS(736), 1, + anon_sym_EXIT, + ACTIONS(739), 1, + anon_sym_CONTINUE, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, sym_lvalue, STATE(103), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(572), 3, + ACTIONS(697), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19287,145 +20431,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [10829] = 27, - ACTIONS(27), 1, + [10924] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(742), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(746), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(748), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, - anon_sym_VAR_RETAIN, - ACTIONS(582), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, - anon_sym_IF, - ACTIONS(586), 1, - anon_sym_CASE, - ACTIONS(588), 1, - anon_sym_FOR, - ACTIONS(590), 1, - anon_sym_WHILE, - ACTIONS(592), 1, - anon_sym_REPEAT, - ACTIONS(594), 1, - anon_sym_REGION, - ACTIONS(596), 1, - sym_identifier, - ACTIONS(598), 1, - anon_sym_EXIT, - ACTIONS(600), 1, - anon_sym_CONTINUE, - ACTIONS(730), 1, - anon_sym_END_FUNCTION, - STATE(1527), 1, - sym_prefixed_identifier, - STATE(1528), 1, - sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(109), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [10934] = 27, - ACTIONS(244), 1, - anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_REGION, - ACTIONS(269), 1, - anon_sym_SQUOTE, - ACTIONS(272), 1, - anon_sym_DQUOTE, - ACTIONS(732), 1, - anon_sym_SEMI, - ACTIONS(738), 1, - anon_sym_VAR, - ACTIONS(741), 1, - anon_sym_VAR_TEMP, - ACTIONS(744), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(747), 1, - anon_sym_VAR_RETAIN, ACTIONS(750), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(752), 1, + anon_sym_VAR_RETAIN, + ACTIONS(754), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(753), 1, - anon_sym_IF, ACTIONS(756), 1, + anon_sym_IF, + ACTIONS(758), 1, anon_sym_CASE, - ACTIONS(759), 1, - anon_sym_FOR, + ACTIONS(760), 1, + anon_sym_END_CASE, ACTIONS(762), 1, + anon_sym_FOR, + ACTIONS(764), 1, anon_sym_WHILE, - ACTIONS(765), 1, + ACTIONS(766), 1, anon_sym_REPEAT, ACTIONS(768), 1, anon_sym_REGION, - ACTIONS(771), 1, + ACTIONS(770), 1, sym_identifier, + ACTIONS(772), 1, + anon_sym_EXIT, ACTIONS(774), 1, - anon_sym_EXIT, - ACTIONS(777), 1, anon_sym_CONTINUE, - STATE(1501), 1, + STATE(1764), 1, sym_prefixed_identifier, - STATE(1502), 1, + STATE(1765), 1, sym_string, - STATE(1650), 1, + STATE(1847), 1, sym_lvalue, - STATE(104), 2, + STATE(105), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(735), 3, + ACTIONS(744), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(521), 17, + STATE(686), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19443,35 +20509,113 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11039] = 27, - ACTIONS(27), 1, + [11029] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_END_CASE, - ACTIONS(780), 1, + ACTIONS(742), 1, anon_sym_SEMI, - ACTIONS(784), 1, + ACTIONS(746), 1, anon_sym_VAR, - ACTIONS(786), 1, + ACTIONS(748), 1, anon_sym_VAR_TEMP, - ACTIONS(788), 1, + ACTIONS(750), 1, anon_sym_VAR_CONSTANT, - ACTIONS(790), 1, + ACTIONS(752), 1, anon_sym_VAR_RETAIN, - ACTIONS(792), 1, + ACTIONS(754), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(794), 1, + ACTIONS(756), 1, anon_sym_IF, - ACTIONS(796), 1, + ACTIONS(758), 1, anon_sym_CASE, - ACTIONS(798), 1, + ACTIONS(762), 1, anon_sym_FOR, - ACTIONS(800), 1, + ACTIONS(764), 1, anon_sym_WHILE, + ACTIONS(766), 1, + anon_sym_REPEAT, + ACTIONS(768), 1, + anon_sym_REGION, + ACTIONS(770), 1, + sym_identifier, + ACTIONS(772), 1, + anon_sym_EXIT, + ACTIONS(774), 1, + anon_sym_CONTINUE, + ACTIONS(776), 1, + anon_sym_END_CASE, + STATE(1764), 1, + sym_prefixed_identifier, + STATE(1765), 1, + sym_string, + STATE(1847), 1, + sym_lvalue, + STATE(114), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(744), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(686), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [11134] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(800), 1, + anon_sym_END_WHILE, ACTIONS(802), 1, anon_sym_REPEAT, ACTIONS(804), 1, @@ -19482,28 +20626,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(810), 1, anon_sym_CONTINUE, - STATE(1556), 1, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1557), 1, + STATE(1747), 1, sym_string, - STATE(1666), 1, + STATE(1835), 1, sym_lvalue, - STATE(106), 2, + STATE(171), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(782), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(603), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19521,92 +20665,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11144] = 27, - ACTIONS(27), 1, + [11239] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(302), 1, + anon_sym_END_DATA_BLOCK, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(644), 1, - anon_sym_END_CASE, - ACTIONS(780), 1, - anon_sym_SEMI, - ACTIONS(784), 1, - anon_sym_VAR, - ACTIONS(786), 1, - anon_sym_VAR_TEMP, - ACTIONS(788), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(790), 1, - anon_sym_VAR_RETAIN, - ACTIONS(792), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(794), 1, - anon_sym_IF, - ACTIONS(796), 1, - anon_sym_CASE, - ACTIONS(798), 1, - anon_sym_FOR, - ACTIONS(800), 1, - anon_sym_WHILE, - ACTIONS(802), 1, - anon_sym_REPEAT, - ACTIONS(804), 1, - anon_sym_REGION, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(808), 1, - anon_sym_EXIT, - ACTIONS(810), 1, - anon_sym_CONTINUE, - STATE(1556), 1, - sym_prefixed_identifier, - STATE(1557), 1, - sym_string, - STATE(1666), 1, - sym_lvalue, - STATE(112), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(782), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(603), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [11249] = 27, - ACTIONS(244), 1, - anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_ORGANIZATION_BLOCK, - ACTIONS(269), 1, - anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(812), 1, anon_sym_SEMI, @@ -19638,15 +20704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(857), 1, anon_sym_CONTINUE, - STATE(1511), 1, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1512), 1, + STATE(1707), 1, sym_string, - STATE(1651), 1, + STATE(1834), 1, sym_lvalue, STATE(107), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -19655,11 +20721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(671), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19677,14 +20743,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11354] = 27, - ACTIONS(244), 1, + [11344] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_FUNCTION_BLOCK, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(860), 1, anon_sym_SEMI, @@ -19716,15 +20782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(905), 1, anon_sym_CONTINUE, - STATE(1521), 1, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1522), 1, + STATE(1713), 1, sym_string, - STATE(1656), 1, + STATE(1842), 1, sym_lvalue, STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -19733,11 +20799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(765), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19755,14 +20821,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11459] = 27, - ACTIONS(244), 1, + [11449] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_FUNCTION, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_END_FUNCTION_BLOCK, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(908), 1, anon_sym_SEMI, @@ -19794,15 +20860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(953), 1, anon_sym_CONTINUE, - STATE(1527), 1, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1718), 1, sym_string, - STATE(1657), 1, + STATE(1848), 1, sym_lvalue, STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -19811,11 +20877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(812), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19833,14 +20899,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11564] = 27, - ACTIONS(244), 1, + [11554] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_WHILE, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_END_FUNCTION, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(956), 1, anon_sym_SEMI, @@ -19872,15 +20938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(1001), 1, anon_sym_CONTINUE, - STATE(1542), 1, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1543), 1, + STATE(1728), 1, sym_string, - STATE(1660), 1, + STATE(1855), 1, sym_lvalue, STATE(110), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -19889,11 +20955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(509), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19911,14 +20977,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11669] = 27, - ACTIONS(244), 1, + [11659] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_IF, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_UNTIL, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(1004), 1, anon_sym_SEMI, @@ -19950,15 +21016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(1049), 1, anon_sym_CONTINUE, - STATE(1547), 1, + STATE(1691), 1, sym_prefixed_identifier, - STATE(1548), 1, + STATE(1692), 1, sym_string, - STATE(1663), 1, + STATE(1846), 1, sym_lvalue, STATE(111), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -19967,11 +21033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(553), 17, + STATE(901), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -19989,14 +21055,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11774] = 27, - ACTIONS(244), 1, + [11764] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_CASE, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_END_WHILE, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(1052), 1, anon_sym_SEMI, @@ -20028,15 +21094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(1097), 1, anon_sym_CONTINUE, - STATE(1556), 1, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1557), 1, + STATE(1747), 1, sym_string, - STATE(1666), 1, + STATE(1835), 1, sym_lvalue, STATE(112), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -20045,11 +21111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(603), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -20067,14 +21133,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11879] = 27, - ACTIONS(244), 1, + [11869] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(250), 1, - anon_sym_END_FOR, - ACTIONS(269), 1, + ACTIONS(302), 1, + anon_sym_END_IF, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(272), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, ACTIONS(1100), 1, anon_sym_SEMI, @@ -20106,15 +21172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EXIT, ACTIONS(1145), 1, anon_sym_CONTINUE, - STATE(1576), 1, + STATE(1755), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1756), 1, sym_string, - STATE(1668), 1, + STATE(1840), 1, sym_lvalue, STATE(113), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -20123,11 +21189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(635), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -20145,535 +21211,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [11984] = 27, - ACTIONS(27), 1, + [11974] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(302), 1, + anon_sym_END_CASE, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, ACTIONS(1148), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(116), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12089] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1150), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(117), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12194] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1152), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12299] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, ACTIONS(1154), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12404] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(1157), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(1160), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(1163), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(1166), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(1169), 1, anon_sym_IF, ACTIONS(1172), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(1175), 1, anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, ACTIONS(1178), 1, + anon_sym_WHILE, + ACTIONS(1181), 1, anon_sym_REPEAT, - ACTIONS(1180), 1, - anon_sym_UNTIL, - ACTIONS(1182), 1, - anon_sym_REGION, ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, - STATE(41), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1158), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(818), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12509] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(1187), 1, sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1190), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12614] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(1193), 1, anon_sym_CONTINUE, - ACTIONS(1192), 1, - anon_sym_END_FOR, - STATE(1576), 1, + STATE(1764), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1765), 1, sym_string, - STATE(1668), 1, + STATE(1847), 1, sym_lvalue, - STATE(121), 2, + STATE(114), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(1151), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(686), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -20691,145 +21289,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [12719] = 27, - ACTIONS(27), 1, + [12079] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(680), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1194), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [12824] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1196), 1, anon_sym_END_REGION, - STATE(1501), 1, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1502), 1, + STATE(1703), 1, sym_string, - STATE(1650), 1, + STATE(1858), 1, sym_lvalue, - STATE(124), 2, + STATE(103), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(502), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(521), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -20847,1783 +21367,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [12929] = 27, - ACTIONS(27), 1, + [12184] = 27, + ACTIONS(296), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(302), 1, + anon_sym_END_FOR, + ACTIONS(321), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, ACTIONS(1198), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(125), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13034] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1200), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13139] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1202), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13244] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1204), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(127), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13349] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(1207), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1206), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13454] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1208), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(129), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13559] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1210), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13664] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, + ACTIONS(1213), 1, anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1212), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(132), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13769] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1214), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(134), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13874] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, ACTIONS(1216), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [13979] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_VAR, - ACTIONS(1162), 1, - anon_sym_VAR_TEMP, - ACTIONS(1164), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, - anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(1219), 1, anon_sym_IF, - ACTIONS(1172), 1, - anon_sym_CASE, - ACTIONS(1174), 1, - anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, - ACTIONS(1178), 1, - anon_sym_REPEAT, - ACTIONS(1182), 1, - anon_sym_REGION, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - ACTIONS(1218), 1, - anon_sym_UNTIL, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, - STATE(41), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1158), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(818), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14084] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1220), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14189] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1222), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(136), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14294] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(1225), 1, anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1224), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14399] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1226), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(138), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14504] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1228), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14609] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, anon_sym_WHILE, - ACTIONS(522), 1, + ACTIONS(1231), 1, anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1230), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(142), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14714] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1232), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(42), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14819] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, ACTIONS(1234), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(143), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [14924] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, anon_sym_REGION, - ACTIONS(528), 1, + ACTIONS(1237), 1, sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1236), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15029] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1238), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15134] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, ACTIONS(1240), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(145), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15239] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(1243), 1, anon_sym_CONTINUE, - ACTIONS(1242), 1, - anon_sym_END_FOR, - STATE(1576), 1, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1780), 1, sym_string, - STATE(1668), 1, + STATE(1854), 1, sym_lvalue, - STATE(113), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(1201), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -22641,145 +21445,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [15344] = 27, - ACTIONS(27), 1, + [12289] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(680), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1244), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(147), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15449] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1246), 1, - anon_sym_END_FOR, - STATE(1576), 1, + anon_sym_END_REGION, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1703), 1, sym_string, - STATE(1668), 1, + STATE(1858), 1, sym_lvalue, - STATE(113), 2, + STATE(120), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -22797,2173 +21523,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [15554] = 27, - ACTIONS(27), 1, + [12394] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, + anon_sym_SEMI, ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, + anon_sym_VAR, ACTIONS(510), 1, - anon_sym_VAR_RETAIN, + anon_sym_VAR_TEMP, ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, + anon_sym_VAR_CONSTANT, ACTIONS(514), 1, - anon_sym_IF, + anon_sym_VAR_RETAIN, ACTIONS(516), 1, - anon_sym_CASE, + anon_sym_VAR_NON_RETAIN, ACTIONS(518), 1, - anon_sym_FOR, + anon_sym_IF, ACTIONS(520), 1, - anon_sym_WHILE, + anon_sym_CASE, ACTIONS(522), 1, - anon_sym_REPEAT, + anon_sym_FOR, ACTIONS(524), 1, - anon_sym_REGION, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, ACTIONS(528), 1, - sym_identifier, + anon_sym_REGION, ACTIONS(530), 1, - anon_sym_EXIT, + sym_identifier, ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, anon_sym_CONTINUE, ACTIONS(1248), 1, - anon_sym_END_REGION, - STATE(1501), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, sym_prefixed_identifier, - STATE(1502), 1, + STATE(1707), 1, sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(150), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15659] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1250), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(151), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15764] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1252), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15869] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1254), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [15974] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1256), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(153), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16079] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1258), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16184] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1260), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(155), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16289] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1262), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16394] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1264), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(158), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16499] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1266), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(159), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16604] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1268), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16709] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1270), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16814] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1272), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(161), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [16919] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1274), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17024] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1276), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(163), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17129] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1278), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17234] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1280), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(167), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17339] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_VAR, - ACTIONS(392), 1, - anon_sym_VAR_TEMP, - ACTIONS(394), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(396), 1, - anon_sym_VAR_RETAIN, - ACTIONS(398), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(400), 1, - anon_sym_IF, - ACTIONS(402), 1, - anon_sym_CASE, - ACTIONS(404), 1, - anon_sym_FOR, - ACTIONS(406), 1, - anon_sym_WHILE, - ACTIONS(408), 1, - anon_sym_REPEAT, - ACTIONS(410), 1, - anon_sym_REGION, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(414), 1, - anon_sym_EXIT, - ACTIONS(416), 1, - anon_sym_CONTINUE, - ACTIONS(1282), 1, - anon_sym_END_ORGANIZATION_BLOCK, - STATE(1511), 1, - sym_prefixed_identifier, - STATE(1512), 1, - sym_string, - STATE(1651), 1, - sym_lvalue, - STATE(39), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(388), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(671), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17444] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1284), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(169), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17549] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1286), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17654] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_SEMI, - ACTIONS(540), 1, - anon_sym_VAR, - ACTIONS(542), 1, - anon_sym_VAR_TEMP, - ACTIONS(544), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(546), 1, - anon_sym_VAR_RETAIN, - ACTIONS(548), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(550), 1, - anon_sym_IF, - ACTIONS(552), 1, - anon_sym_CASE, - ACTIONS(554), 1, - anon_sym_FOR, - ACTIONS(556), 1, - anon_sym_WHILE, - ACTIONS(558), 1, - anon_sym_REPEAT, - ACTIONS(560), 1, - anon_sym_REGION, - ACTIONS(562), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_EXIT, - ACTIONS(566), 1, - anon_sym_CONTINUE, - ACTIONS(1288), 1, - anon_sym_END_FUNCTION_BLOCK, - STATE(1521), 1, - sym_prefixed_identifier, - STATE(1522), 1, - sym_string, - STATE(1656), 1, - sym_lvalue, - STATE(44), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(538), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(765), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17759] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1290), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17864] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1292), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(171), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [17969] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1294), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18074] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1296), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(173), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18179] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1298), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18284] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1300), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(176), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18389] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1302), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, + STATE(1834), 1, sym_lvalue, STATE(178), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(420), 3, + ACTIONS(506), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(509), 17, + STATE(744), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -24981,67 +21601,2407 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [18494] = 27, - ACTIONS(27), 1, + [12499] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(500), 1, + ACTIONS(778), 1, anon_sym_SEMI, - ACTIONS(504), 1, + ACTIONS(782), 1, anon_sym_VAR, - ACTIONS(506), 1, + ACTIONS(784), 1, anon_sym_VAR_TEMP, - ACTIONS(508), 1, + ACTIONS(786), 1, anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, + ACTIONS(788), 1, anon_sym_VAR_RETAIN, - ACTIONS(512), 1, + ACTIONS(790), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, + ACTIONS(792), 1, anon_sym_IF, - ACTIONS(516), 1, + ACTIONS(794), 1, anon_sym_CASE, - ACTIONS(518), 1, + ACTIONS(796), 1, anon_sym_FOR, - ACTIONS(520), 1, + ACTIONS(798), 1, anon_sym_WHILE, - ACTIONS(522), 1, + ACTIONS(802), 1, anon_sym_REPEAT, - ACTIONS(524), 1, + ACTIONS(804), 1, anon_sym_REGION, - ACTIONS(528), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(808), 1, anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1250), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(122), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [12604] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1252), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [12709] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1248), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(107), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [12814] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1254), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [12919] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1256), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(124), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13024] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1258), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13129] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1260), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(126), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13234] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1262), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13339] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1264), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(130), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13444] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1266), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(108), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13549] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1268), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(132), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13654] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1270), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13759] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1266), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(188), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13864] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1272), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [13969] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1274), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(134), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14074] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1276), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14179] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1278), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(136), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14284] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1280), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14389] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1282), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(140), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14494] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1284), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(109), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14599] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1286), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(142), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14704] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1288), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14809] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1284), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(198), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [14914] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1290), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15019] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1292), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(144), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15124] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1294), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15229] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1296), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(83), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15334] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1298), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15439] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1300), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(150), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15544] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(1302), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15649] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, anon_sym_CONTINUE, ACTIONS(1304), 1, - anon_sym_END_REGION, - STATE(1501), 1, + anon_sym_END_WHILE, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1502), 1, + STATE(1747), 1, sym_string, - STATE(1650), 1, + STATE(1835), 1, sym_lvalue, - STATE(104), 2, + STATE(152), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(502), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(521), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -25059,2641 +24019,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [18599] = 27, - ACTIONS(27), 1, + [15754] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(574), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(576), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(578), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(580), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(582), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(584), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(586), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(588), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(590), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(592), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(594), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(596), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(598), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(600), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1306), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [15859] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(1302), 1, anon_sym_END_FUNCTION, - STATE(1527), 1, + STATE(1727), 1, sym_prefixed_identifier, - STATE(1528), 1, + STATE(1728), 1, sym_string, - STATE(1657), 1, - sym_lvalue, - STATE(46), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(572), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(812), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18704] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1308), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18809] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1310), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(180), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [18914] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1312), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19019] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1314), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(182), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19124] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1316), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19229] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1318), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(185), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19334] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1320), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(187), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19439] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1322), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19544] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_VAR, - ACTIONS(1162), 1, - anon_sym_VAR_TEMP, - ACTIONS(1164), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, - anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, - anon_sym_IF, - ACTIONS(1172), 1, - anon_sym_CASE, - ACTIONS(1174), 1, - anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, - ACTIONS(1178), 1, - anon_sym_REPEAT, - ACTIONS(1182), 1, - anon_sym_REGION, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - ACTIONS(1324), 1, - anon_sym_UNTIL, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, - STATE(133), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1158), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(818), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19649] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1326), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19754] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1328), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(189), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19859] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1330), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [19964] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1332), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(191), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20069] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1334), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20174] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1336), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(194), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20279] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1338), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(195), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20384] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1340), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20489] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1342), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20594] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1344), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(197), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20699] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1346), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20804] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1348), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(199), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [20909] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1350), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21014] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1352), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(202), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21119] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1354), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(203), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21224] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(500), 1, - anon_sym_SEMI, - ACTIONS(504), 1, - anon_sym_VAR, - ACTIONS(506), 1, - anon_sym_VAR_TEMP, - ACTIONS(508), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(510), 1, - anon_sym_VAR_RETAIN, - ACTIONS(512), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(514), 1, - anon_sym_IF, - ACTIONS(516), 1, - anon_sym_CASE, - ACTIONS(518), 1, - anon_sym_FOR, - ACTIONS(520), 1, - anon_sym_WHILE, - ACTIONS(522), 1, - anon_sym_REPEAT, - ACTIONS(524), 1, - anon_sym_REGION, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - anon_sym_EXIT, - ACTIONS(532), 1, - anon_sym_CONTINUE, - ACTIONS(1356), 1, - anon_sym_END_REGION, - STATE(1501), 1, - sym_prefixed_identifier, - STATE(1502), 1, - sym_string, - STATE(1650), 1, - sym_lvalue, - STATE(104), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(502), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(521), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21329] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_SEMI, - ACTIONS(422), 1, - anon_sym_VAR, - ACTIONS(424), 1, - anon_sym_VAR_TEMP, - ACTIONS(426), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(428), 1, - anon_sym_VAR_RETAIN, - ACTIONS(430), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(432), 1, - anon_sym_IF, - ACTIONS(434), 1, - anon_sym_CASE, - ACTIONS(436), 1, - anon_sym_FOR, - ACTIONS(438), 1, - anon_sym_WHILE, - ACTIONS(442), 1, - anon_sym_REPEAT, - ACTIONS(444), 1, - anon_sym_REGION, - ACTIONS(446), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_EXIT, - ACTIONS(450), 1, - anon_sym_CONTINUE, - ACTIONS(1358), 1, - anon_sym_END_WHILE, - STATE(1542), 1, - sym_prefixed_identifier, - STATE(1543), 1, - sym_string, - STATE(1660), 1, - sym_lvalue, - STATE(110), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(420), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(509), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21434] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1360), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(205), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21539] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1362), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21644] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1364), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(207), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21749] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(662), 1, - anon_sym_VAR, - ACTIONS(664), 1, - anon_sym_VAR_TEMP, - ACTIONS(666), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, - anon_sym_VAR_RETAIN, - ACTIONS(670), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, - anon_sym_IF, - ACTIONS(674), 1, - anon_sym_CASE, - ACTIONS(676), 1, - anon_sym_FOR, - ACTIONS(680), 1, - anon_sym_WHILE, - ACTIONS(682), 1, - anon_sym_REPEAT, - ACTIONS(684), 1, - anon_sym_REGION, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(688), 1, - anon_sym_EXIT, - ACTIONS(690), 1, - anon_sym_CONTINUE, - ACTIONS(1366), 1, - anon_sym_END_FOR, - STATE(1576), 1, - sym_prefixed_identifier, - STATE(1577), 1, - sym_string, - STATE(1668), 1, - sym_lvalue, - STATE(113), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(660), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(698), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21854] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_VAR, - ACTIONS(1162), 1, - anon_sym_VAR_TEMP, - ACTIONS(1164), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, - anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, - anon_sym_IF, - ACTIONS(1172), 1, - anon_sym_CASE, - ACTIONS(1174), 1, - anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, - ACTIONS(1178), 1, - anon_sym_REPEAT, - ACTIONS(1182), 1, - anon_sym_REGION, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - ACTIONS(1368), 1, - anon_sym_UNTIL, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, - STATE(209), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1158), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(818), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [21959] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_VAR, - ACTIONS(1162), 1, - anon_sym_VAR_TEMP, - ACTIONS(1164), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, - anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, - anon_sym_IF, - ACTIONS(1172), 1, - anon_sym_CASE, - ACTIONS(1174), 1, - anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, - ACTIONS(1178), 1, - anon_sym_REPEAT, - ACTIONS(1182), 1, - anon_sym_REGION, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - ACTIONS(1370), 1, - anon_sym_UNTIL, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, - sym_lvalue, - STATE(41), 2, - sym_statement, - aux_sym_organization_block_repeat2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1158), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1664), 3, - sym_function_name, - sym_field_access, - sym_array_access, - STATE(818), 17, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - sym_empty_statement, - sym_fb_call, - sym_assignment, - sym_if_statement, - sym_case_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_region_statement, - sym_function_call, - sym_exit_statement, - sym_continue_statement, - [22064] = 27, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_VAR, - ACTIONS(1162), 1, - anon_sym_VAR_TEMP, - ACTIONS(1164), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, - anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, - anon_sym_IF, - ACTIONS(1172), 1, - anon_sym_CASE, - ACTIONS(1174), 1, - anon_sym_FOR, - ACTIONS(1176), 1, - anon_sym_WHILE, - ACTIONS(1178), 1, - anon_sym_REPEAT, - ACTIONS(1182), 1, - anon_sym_REGION, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_EXIT, - ACTIONS(1188), 1, - anon_sym_CONTINUE, - ACTIONS(1372), 1, - anon_sym_UNTIL, - STATE(1491), 1, - sym_prefixed_identifier, - STATE(1492), 1, - sym_string, - STATE(1647), 1, + STATE(1855), 1, sym_lvalue, STATE(211), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(436), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(939), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -27711,67 +24175,2719 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22169] = 27, - ACTIONS(27), 1, + [15964] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(778), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(782), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(784), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(786), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(788), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(790), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(792), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(794), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(796), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(798), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(802), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(804), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(808), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1308), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16069] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1310), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(154), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16174] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1312), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16279] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1314), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(156), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16384] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1316), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16489] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1318), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(160), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16594] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1320), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(121), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16699] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1322), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(162), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16804] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1324), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [16909] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1326), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(109), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17014] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1328), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17119] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1330), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(164), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17224] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1332), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17329] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1334), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(166), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17434] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1336), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17539] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1338), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(170), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17644] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1340), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(128), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17749] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1342), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(172), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17854] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1344), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [17959] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1346), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18064] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1348), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18169] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1350), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(174), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18274] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1352), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18379] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1354), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(176), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18484] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1356), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18589] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1358), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(180), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18694] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1360), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(107), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18799] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1362), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(182), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [18904] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1364), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19009] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1360), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(231), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19114] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1366), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19219] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1368), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(184), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19324] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1370), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19429] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1372), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(186), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [19534] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1374), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(41), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -27789,67 +26905,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22274] = 27, - ACTIONS(27), 1, + [19639] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1376), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_REGION, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1703), 1, sym_string, - STATE(1647), 1, + STATE(1858), 1, sym_lvalue, - STATE(213), 2, + STATE(190), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -27867,67 +26983,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22379] = 27, - ACTIONS(27), 1, + [19744] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(542), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(544), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(546), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(548), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(550), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(552), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(554), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(556), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(558), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(560), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(562), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(564), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(566), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(568), 1, anon_sym_CONTINUE, ACTIONS(1378), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1713), 1, sym_string, - STATE(1647), 1, + STATE(1842), 1, sym_lvalue, - STATE(41), 2, + STATE(108), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(540), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(821), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -27945,67 +27061,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22484] = 27, - ACTIONS(27), 1, + [19849] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(778), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(782), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(784), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(786), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(788), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(790), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(792), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(794), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(796), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(798), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(802), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(804), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(808), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(810), 1, anon_sym_CONTINUE, ACTIONS(1380), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_WHILE, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1747), 1, sym_string, - STATE(1647), 1, + STATE(1835), 1, sym_lvalue, - STATE(215), 2, + STATE(192), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28023,67 +27139,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22589] = 27, - ACTIONS(27), 1, + [19954] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1382), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_REGION, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1703), 1, sym_string, - STATE(1647), 1, + STATE(1858), 1, sym_lvalue, - STATE(41), 2, + STATE(103), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28101,67 +27217,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22694] = 27, - ACTIONS(27), 1, + [20059] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(538), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(542), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(544), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(546), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(548), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(550), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(552), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(554), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(556), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(558), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(560), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(562), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(564), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(566), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1378), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(238), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [20164] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, anon_sym_CONTINUE, ACTIONS(1384), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_WHILE, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1747), 1, sym_string, - STATE(1647), 1, + STATE(1835), 1, sym_lvalue, - STATE(217), 2, + STATE(112), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28179,67 +27373,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22799] = 27, - ACTIONS(27), 1, + [20269] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1386), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(41), 2, + STATE(194), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28257,67 +27451,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [22904] = 27, - ACTIONS(27), 1, + [20374] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1388), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(219), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28335,67 +27529,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23009] = 27, - ACTIONS(27), 1, + [20479] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1390), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(41), 2, + STATE(196), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28413,67 +27607,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23114] = 27, - ACTIONS(27), 1, + [20584] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1392), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(221), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28491,67 +27685,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23219] = 27, - ACTIONS(27), 1, + [20689] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1394), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_REGION, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1703), 1, sym_string, - STATE(1647), 1, + STATE(1858), 1, sym_lvalue, - STATE(41), 2, + STATE(200), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28569,67 +27763,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23324] = 27, - ACTIONS(27), 1, + [20794] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(576), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(578), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(580), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(582), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(584), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(586), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(588), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(590), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(592), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(594), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(596), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(600), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(602), 1, anon_sym_CONTINUE, ACTIONS(1396), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1718), 1, sym_string, - STATE(1647), 1, + STATE(1848), 1, sym_lvalue, - STATE(223), 2, + STATE(109), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(574), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(888), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28647,67 +27841,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23429] = 27, - ACTIONS(27), 1, + [20899] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(778), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(782), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(784), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(786), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(788), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(790), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(792), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(794), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(796), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(798), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(802), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(804), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(808), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(810), 1, anon_sym_CONTINUE, ACTIONS(1398), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_WHILE, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1747), 1, sym_string, - STATE(1647), 1, + STATE(1835), 1, sym_lvalue, - STATE(41), 2, + STATE(202), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28725,67 +27919,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23534] = 27, - ACTIONS(27), 1, + [21004] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(466), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(470), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(472), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(474), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(476), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(478), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(480), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(482), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(484), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(486), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(488), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(490), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(494), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(496), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(498), 1, anon_sym_CONTINUE, ACTIONS(1400), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_REGION, + STATE(1702), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1703), 1, sym_string, - STATE(1647), 1, + STATE(1858), 1, sym_lvalue, - STATE(225), 2, + STATE(103), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(468), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(598), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28803,67 +27997,145 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23639] = 27, - ACTIONS(27), 1, + [21109] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(572), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(576), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(578), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(580), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(582), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(584), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(586), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(588), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(590), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(592), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(594), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(596), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(600), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1396), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(161), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [21214] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, anon_sym_CONTINUE, ACTIONS(1402), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_WHILE, + STATE(1746), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1747), 1, sym_string, - STATE(1647), 1, + STATE(1835), 1, sym_lvalue, - STATE(41), 2, + STATE(112), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(780), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(591), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28881,67 +28153,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23744] = 27, - ACTIONS(27), 1, + [21319] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1404), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(227), 2, + STATE(204), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -28959,67 +28231,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23849] = 27, - ACTIONS(27), 1, + [21424] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1406), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(41), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -29037,67 +28309,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [23954] = 27, - ACTIONS(27), 1, + [21529] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1156), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(1160), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(1162), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(1164), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(1166), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(1168), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(1170), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(1172), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(1174), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(1176), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(1178), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(1182), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(1184), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(1188), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1408), 1, - anon_sym_UNTIL, - STATE(1491), 1, + anon_sym_END_FOR, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1492), 1, + STATE(1780), 1, sym_string, - STATE(1647), 1, + STATE(1854), 1, sym_lvalue, - STATE(118), 2, + STATE(206), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1158), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(818), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -29115,67 +28387,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [24059] = 27, - ACTIONS(27), 1, + [21634] = 27, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(658), 1, + ACTIONS(398), 1, anon_sym_SEMI, - ACTIONS(662), 1, + ACTIONS(402), 1, anon_sym_VAR, - ACTIONS(664), 1, + ACTIONS(404), 1, anon_sym_VAR_TEMP, - ACTIONS(666), 1, + ACTIONS(406), 1, anon_sym_VAR_CONSTANT, - ACTIONS(668), 1, + ACTIONS(408), 1, anon_sym_VAR_RETAIN, - ACTIONS(670), 1, + ACTIONS(410), 1, anon_sym_VAR_NON_RETAIN, - ACTIONS(672), 1, + ACTIONS(412), 1, anon_sym_IF, - ACTIONS(674), 1, + ACTIONS(414), 1, anon_sym_CASE, - ACTIONS(676), 1, + ACTIONS(416), 1, anon_sym_FOR, - ACTIONS(680), 1, + ACTIONS(420), 1, anon_sym_WHILE, - ACTIONS(682), 1, + ACTIONS(422), 1, anon_sym_REPEAT, - ACTIONS(684), 1, + ACTIONS(424), 1, anon_sym_REGION, - ACTIONS(686), 1, + ACTIONS(426), 1, sym_identifier, - ACTIONS(688), 1, + ACTIONS(428), 1, anon_sym_EXIT, - ACTIONS(690), 1, + ACTIONS(430), 1, anon_sym_CONTINUE, ACTIONS(1410), 1, anon_sym_END_FOR, - STATE(1576), 1, + STATE(1779), 1, sym_prefixed_identifier, - STATE(1577), 1, + STATE(1780), 1, sym_string, - STATE(1668), 1, + STATE(1854), 1, sym_lvalue, - STATE(119), 2, + STATE(116), 2, sym_statement, - aux_sym_organization_block_repeat2, + aux_sym_data_block_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(660), 3, + ACTIONS(400), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - STATE(1664), 3, + STATE(1856), 3, sym_function_name, sym_field_access, sym_array_access, - STATE(698), 17, + STATE(781), 17, sym_var_declaration, sym_var_temp_declaration, sym_var_constant_declaration, @@ -29193,129 +28465,4661 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_exit_statement, sym_continue_statement, - [24164] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1414), 6, - anon_sym_EQ, - anon_sym_VAR, - anon_sym_LPAREN, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 36, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_BEGIN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_EQ, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24216] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1418), 6, - anon_sym_EQ, - anon_sym_VAR, - anon_sym_LPAREN, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1416), 36, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_BEGIN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_EQ, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24268] = 10, - ACTIONS(1424), 1, - anon_sym_SLASH, - ACTIONS(1426), 1, - anon_sym_DASH, - ACTIONS(1428), 1, + [21739] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(1431), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(1434), 1, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, sym_identifier, - STATE(302), 1, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1412), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(210), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [21844] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(1414), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(45), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [21949] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1416), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(212), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22054] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1418), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22159] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SEMI, + ACTIONS(438), 1, + anon_sym_VAR, + ACTIONS(440), 1, + anon_sym_VAR_TEMP, + ACTIONS(442), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(444), 1, + anon_sym_VAR_RETAIN, + ACTIONS(446), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(448), 1, + anon_sym_IF, + ACTIONS(450), 1, + anon_sym_CASE, + ACTIONS(452), 1, + anon_sym_FOR, + ACTIONS(454), 1, + anon_sym_WHILE, + ACTIONS(456), 1, + anon_sym_REPEAT, + ACTIONS(458), 1, + anon_sym_REGION, + ACTIONS(460), 1, + sym_identifier, + ACTIONS(462), 1, + anon_sym_EXIT, + ACTIONS(464), 1, + anon_sym_CONTINUE, + ACTIONS(1414), 1, + anon_sym_END_FUNCTION, + STATE(1727), 1, + sym_prefixed_identifier, + STATE(1728), 1, + sym_string, + STATE(1855), 1, + sym_lvalue, + STATE(110), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(436), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(939), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22264] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1420), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22369] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1422), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(214), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22474] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1424), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22579] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1426), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(216), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22684] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1428), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22789] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1430), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(220), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22894] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(776), 1, + anon_sym_END_IF, + ACTIONS(1432), 1, + anon_sym_SEMI, + ACTIONS(1436), 1, + anon_sym_VAR, + ACTIONS(1438), 1, + anon_sym_VAR_TEMP, + ACTIONS(1440), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(1442), 1, + anon_sym_VAR_RETAIN, + ACTIONS(1444), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(1446), 1, + anon_sym_IF, + ACTIONS(1448), 1, + anon_sym_CASE, + ACTIONS(1450), 1, + anon_sym_FOR, + ACTIONS(1452), 1, + anon_sym_WHILE, + ACTIONS(1454), 1, + anon_sym_REPEAT, + ACTIONS(1456), 1, + anon_sym_REGION, + ACTIONS(1458), 1, + sym_identifier, + ACTIONS(1460), 1, + anon_sym_EXIT, + ACTIONS(1462), 1, + anon_sym_CONTINUE, + STATE(1755), 1, + sym_prefixed_identifier, + STATE(1756), 1, + sym_string, + STATE(1840), 1, + sym_lvalue, + STATE(113), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1434), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(635), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [22999] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1464), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(222), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23104] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1466), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23209] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1468), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(138), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23314] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1470), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23419] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1472), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(224), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23524] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1474), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23629] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1476), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(226), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23734] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1478), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23839] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1480), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(230), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [23944] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1482), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(49), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24049] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1484), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(232), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24154] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SEMI, + ACTIONS(470), 1, + anon_sym_VAR, + ACTIONS(472), 1, + anon_sym_VAR_TEMP, + ACTIONS(474), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(476), 1, + anon_sym_VAR_RETAIN, + ACTIONS(478), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(480), 1, + anon_sym_IF, + ACTIONS(482), 1, + anon_sym_CASE, + ACTIONS(484), 1, + anon_sym_FOR, + ACTIONS(486), 1, + anon_sym_WHILE, + ACTIONS(488), 1, + anon_sym_REPEAT, + ACTIONS(490), 1, + anon_sym_REGION, + ACTIONS(494), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_EXIT, + ACTIONS(498), 1, + anon_sym_CONTINUE, + ACTIONS(1486), 1, + anon_sym_END_REGION, + STATE(1702), 1, + sym_prefixed_identifier, + STATE(1703), 1, + sym_string, + STATE(1858), 1, + sym_lvalue, + STATE(103), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(468), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(598), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24259] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_SEMI, + ACTIONS(508), 1, + anon_sym_VAR, + ACTIONS(510), 1, + anon_sym_VAR_TEMP, + ACTIONS(512), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(514), 1, + anon_sym_VAR_RETAIN, + ACTIONS(516), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(518), 1, + anon_sym_IF, + ACTIONS(520), 1, + anon_sym_CASE, + ACTIONS(522), 1, + anon_sym_FOR, + ACTIONS(524), 1, + anon_sym_WHILE, + ACTIONS(526), 1, + anon_sym_REPEAT, + ACTIONS(528), 1, + anon_sym_REGION, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(532), 1, + anon_sym_EXIT, + ACTIONS(534), 1, + anon_sym_CONTINUE, + ACTIONS(1482), 1, + anon_sym_END_DATA_BLOCK, + STATE(1706), 1, + sym_prefixed_identifier, + STATE(1707), 1, + sym_string, + STATE(1834), 1, + sym_lvalue, + STATE(107), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(506), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(744), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24364] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + anon_sym_SEMI, + ACTIONS(782), 1, + anon_sym_VAR, + ACTIONS(784), 1, + anon_sym_VAR_TEMP, + ACTIONS(786), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(788), 1, + anon_sym_VAR_RETAIN, + ACTIONS(790), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(792), 1, + anon_sym_IF, + ACTIONS(794), 1, + anon_sym_CASE, + ACTIONS(796), 1, + anon_sym_FOR, + ACTIONS(798), 1, + anon_sym_WHILE, + ACTIONS(802), 1, + anon_sym_REPEAT, + ACTIONS(804), 1, + anon_sym_REGION, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_EXIT, + ACTIONS(810), 1, + anon_sym_CONTINUE, + ACTIONS(1488), 1, + anon_sym_END_WHILE, + STATE(1746), 1, + sym_prefixed_identifier, + STATE(1747), 1, + sym_string, + STATE(1835), 1, + sym_lvalue, + STATE(112), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(780), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(591), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24469] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1490), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(234), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24574] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1492), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24679] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1494), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(236), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24784] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(398), 1, + anon_sym_SEMI, + ACTIONS(402), 1, + anon_sym_VAR, + ACTIONS(404), 1, + anon_sym_VAR_TEMP, + ACTIONS(406), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(408), 1, + anon_sym_VAR_RETAIN, + ACTIONS(410), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(412), 1, + anon_sym_IF, + ACTIONS(414), 1, + anon_sym_CASE, + ACTIONS(416), 1, + anon_sym_FOR, + ACTIONS(420), 1, + anon_sym_WHILE, + ACTIONS(422), 1, + anon_sym_REPEAT, + ACTIONS(424), 1, + anon_sym_REGION, + ACTIONS(426), 1, + sym_identifier, + ACTIONS(428), 1, + anon_sym_EXIT, + ACTIONS(430), 1, + anon_sym_CONTINUE, + ACTIONS(1496), 1, + anon_sym_END_FOR, + STATE(1779), 1, + sym_prefixed_identifier, + STATE(1780), 1, + sym_string, + STATE(1854), 1, + sym_lvalue, + STATE(116), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(400), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(781), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24889] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1498), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(50), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [24994] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(538), 1, + anon_sym_SEMI, + ACTIONS(542), 1, + anon_sym_VAR, + ACTIONS(544), 1, + anon_sym_VAR_TEMP, + ACTIONS(546), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(548), 1, + anon_sym_VAR_RETAIN, + ACTIONS(550), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(552), 1, + anon_sym_IF, + ACTIONS(554), 1, + anon_sym_CASE, + ACTIONS(556), 1, + anon_sym_FOR, + ACTIONS(558), 1, + anon_sym_WHILE, + ACTIONS(560), 1, + anon_sym_REPEAT, + ACTIONS(562), 1, + anon_sym_REGION, + ACTIONS(564), 1, + sym_identifier, + ACTIONS(566), 1, + anon_sym_EXIT, + ACTIONS(568), 1, + anon_sym_CONTINUE, + ACTIONS(1498), 1, + anon_sym_END_ORGANIZATION_BLOCK, + STATE(1712), 1, + sym_prefixed_identifier, + STATE(1713), 1, + sym_string, + STATE(1842), 1, + sym_lvalue, + STATE(108), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(540), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(821), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25099] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + ACTIONS(576), 1, + anon_sym_VAR, + ACTIONS(578), 1, + anon_sym_VAR_TEMP, + ACTIONS(580), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(582), 1, + anon_sym_VAR_RETAIN, + ACTIONS(584), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(586), 1, + anon_sym_IF, + ACTIONS(588), 1, + anon_sym_CASE, + ACTIONS(590), 1, + anon_sym_FOR, + ACTIONS(592), 1, + anon_sym_WHILE, + ACTIONS(594), 1, + anon_sym_REPEAT, + ACTIONS(596), 1, + anon_sym_REGION, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_EXIT, + ACTIONS(602), 1, + anon_sym_CONTINUE, + ACTIONS(1326), 1, + anon_sym_END_FUNCTION_BLOCK, + STATE(1717), 1, + sym_prefixed_identifier, + STATE(1718), 1, + sym_string, + STATE(1848), 1, + sym_lvalue, + STATE(52), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(574), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(888), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25204] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1500), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(241), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25309] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1502), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25414] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1504), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(243), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25519] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1506), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25624] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1508), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(245), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25729] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1510), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25834] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1512), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(247), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [25939] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1514), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26044] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1516), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(249), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26149] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1518), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26254] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1520), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(251), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26359] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1522), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26464] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1524), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(253), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26569] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1526), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26674] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1528), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(255), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26779] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1530), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26884] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1532), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(257), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [26989] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1534), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27094] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1536), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(259), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27199] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1538), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27304] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1540), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(261), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27409] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1542), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27514] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1544), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(263), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27619] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(636), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + anon_sym_VAR, + ACTIONS(642), 1, + anon_sym_VAR_TEMP, + ACTIONS(644), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(646), 1, + anon_sym_VAR_RETAIN, + ACTIONS(648), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(650), 1, + anon_sym_IF, + ACTIONS(652), 1, + anon_sym_CASE, + ACTIONS(654), 1, + anon_sym_FOR, + ACTIONS(656), 1, + anon_sym_WHILE, + ACTIONS(658), 1, + anon_sym_REPEAT, + ACTIONS(662), 1, + anon_sym_REGION, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_EXIT, + ACTIONS(668), 1, + anon_sym_CONTINUE, + ACTIONS(1546), 1, + anon_sym_UNTIL, + STATE(1691), 1, + sym_prefixed_identifier, + STATE(1692), 1, + sym_string, + STATE(1846), 1, + sym_lvalue, + STATE(111), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(638), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(901), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27724] = 27, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(760), 1, + anon_sym_END_IF, + ACTIONS(1432), 1, + anon_sym_SEMI, + ACTIONS(1436), 1, + anon_sym_VAR, + ACTIONS(1438), 1, + anon_sym_VAR_TEMP, + ACTIONS(1440), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(1442), 1, + anon_sym_VAR_RETAIN, + ACTIONS(1444), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(1446), 1, + anon_sym_IF, + ACTIONS(1448), 1, + anon_sym_CASE, + ACTIONS(1450), 1, + anon_sym_FOR, + ACTIONS(1452), 1, + anon_sym_WHILE, + ACTIONS(1454), 1, + anon_sym_REPEAT, + ACTIONS(1456), 1, + anon_sym_REGION, + ACTIONS(1458), 1, + sym_identifier, + ACTIONS(1460), 1, + anon_sym_EXIT, + ACTIONS(1462), 1, + anon_sym_CONTINUE, + STATE(1755), 1, + sym_prefixed_identifier, + STATE(1756), 1, + sym_string, + STATE(1840), 1, + sym_lvalue, + STATE(218), 2, + sym_statement, + aux_sym_data_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1434), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1856), 3, + sym_function_name, + sym_field_access, + sym_array_access, + STATE(635), 17, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + sym_empty_statement, + sym_fb_call, + sym_assignment, + sym_if_statement, + sym_case_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_region_statement, + sym_function_call, + sym_exit_statement, + sym_continue_statement, + [27829] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1550), 6, + anon_sym_EQ, + anon_sym_VAR, + anon_sym_LPAREN, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1548), 39, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_STRUCT, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_EQ, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [27884] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1554), 6, + anon_sym_EQ, + anon_sym_VAR, + anon_sym_LPAREN, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1552), 39, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_STRUCT, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_EQ, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [27939] = 10, + ACTIONS(1560), 1, + anon_sym_SLASH, + ACTIONS(1562), 1, + anon_sym_DASH, + ACTIONS(1564), 1, + anon_sym_SQUOTE, + ACTIONS(1567), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + sym_identifier, + STATE(327), 1, sym_region_name, - STATE(235), 2, + STATE(270), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 3, + ACTIONS(1556), 3, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, - ACTIONS(1422), 19, + ACTIONS(1558), 21, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -29335,19 +33139,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [24322] = 3, + [27995] = 10, + ACTIONS(1560), 1, + anon_sym_SLASH, + ACTIONS(1562), 1, + anon_sym_DASH, + ACTIONS(1577), 1, + anon_sym_SQUOTE, + ACTIONS(1580), 1, + anon_sym_DQUOTE, + ACTIONS(1583), 1, + sym_identifier, + STATE(368), 1, + sym_region_name, + STATE(270), 2, + sym_string, + aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1437), 6, + ACTIONS(1573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(1575), 21, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28051] = 8, + ACTIONS(1593), 1, + anon_sym_DASH, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(1599), 1, + anon_sym_DQUOTE, + ACTIONS(1590), 2, + anon_sym_SLASH, + sym_identifier, + STATE(269), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1586), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(1588), 21, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28102] = 9, + ACTIONS(1606), 1, + anon_sym_SLASH, + ACTIONS(1608), 1, + anon_sym_DASH, + ACTIONS(1610), 1, + anon_sym_SQUOTE, + ACTIONS(1613), 1, + anon_sym_DQUOTE, + ACTIONS(1616), 1, + sym_identifier, + STATE(269), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1602), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(1604), 21, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28155] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_COLON, anon_sym_LPAREN, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 24, + ACTIONS(1621), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON_EQ, @@ -29372,718 +33309,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_STAR, anon_sym_MOD, - [24362] = 10, - ACTIONS(1424), 1, + [28195] = 10, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1426), 1, - anon_sym_DASH, - ACTIONS(1445), 1, - anon_sym_SQUOTE, - ACTIONS(1448), 1, - anon_sym_DQUOTE, - ACTIONS(1451), 1, - sym_identifier, - STATE(350), 1, - sym_region_name, - STATE(235), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1441), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1443), 19, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24416] = 9, - ACTIONS(1458), 1, - anon_sym_SLASH, - ACTIONS(1460), 1, - anon_sym_DASH, - ACTIONS(1462), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - anon_sym_DQUOTE, - ACTIONS(1468), 1, - sym_identifier, - STATE(238), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1454), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1456), 19, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24467] = 10, - ACTIONS(1471), 1, - anon_sym_SLASH, - ACTIONS(1473), 1, - anon_sym_DASH, - ACTIONS(1475), 1, - anon_sym_SQUOTE, - ACTIONS(1478), 1, - anon_sym_DQUOTE, - ACTIONS(1481), 1, - sym_identifier, - STATE(441), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(241), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1422), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24520] = 10, - ACTIONS(1471), 1, - anon_sym_SLASH, - ACTIONS(1473), 1, - anon_sym_DASH, - ACTIONS(1484), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - anon_sym_DQUOTE, - ACTIONS(1490), 1, - sym_identifier, - STATE(432), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(241), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1443), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24573] = 8, - ACTIONS(1500), 1, - anon_sym_DASH, - ACTIONS(1503), 1, - anon_sym_SQUOTE, - ACTIONS(1506), 1, - anon_sym_DQUOTE, - ACTIONS(1497), 2, - anon_sym_SLASH, - sym_identifier, - STATE(238), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1493), 3, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1495), 19, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24622] = 10, - ACTIONS(1509), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_DASH, - ACTIONS(1513), 1, - anon_sym_SQUOTE, - ACTIONS(1516), 1, - anon_sym_DQUOTE, - ACTIONS(1519), 1, - sym_identifier, - STATE(459), 1, - sym_region_name, - STATE(248), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1441), 3, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - ACTIONS(1443), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24675] = 10, - ACTIONS(1509), 1, - anon_sym_SLASH, - ACTIONS(1511), 1, - anon_sym_DASH, - ACTIONS(1522), 1, - anon_sym_SQUOTE, - ACTIONS(1525), 1, - anon_sym_DQUOTE, - ACTIONS(1528), 1, - sym_identifier, - STATE(481), 1, - sym_region_name, - STATE(248), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1420), 3, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - ACTIONS(1422), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24728] = 9, - ACTIONS(1531), 1, - anon_sym_SLASH, - ACTIONS(1533), 1, - anon_sym_DASH, - ACTIONS(1535), 1, - anon_sym_SQUOTE, - ACTIONS(1538), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(242), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24778] = 8, - ACTIONS(1547), 1, - anon_sym_DASH, - ACTIONS(1550), 1, - anon_sym_SQUOTE, - ACTIONS(1553), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1544), 2, - anon_sym_SLASH, - sym_identifier, - STATE(242), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [24826] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1556), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1558), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24864] = 5, - ACTIONS(1566), 1, - anon_sym_LPAREN, - ACTIONS(1564), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1560), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24906] = 5, - ACTIONS(1566), 1, - anon_sym_LPAREN, - ACTIONS(1568), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1560), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24948] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1570), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1572), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [24986] = 8, - ACTIONS(1577), 1, - anon_sym_DASH, - ACTIONS(1580), 1, - anon_sym_SQUOTE, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1574), 2, - anon_sym_SLASH, - sym_identifier, - STATE(247), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1493), 3, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - ACTIONS(1495), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25034] = 9, - ACTIONS(1586), 1, - anon_sym_SLASH, - ACTIONS(1588), 1, - anon_sym_DASH, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(1593), 1, - anon_sym_DQUOTE, - ACTIONS(1596), 1, - sym_identifier, - STATE(247), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1454), 3, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - ACTIONS(1456), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25084] = 10, - ACTIONS(1599), 1, - anon_sym_SLASH, - ACTIONS(1601), 1, - anon_sym_DASH, - ACTIONS(1603), 1, - anon_sym_SQUOTE, - ACTIONS(1606), 1, - anon_sym_DQUOTE, - ACTIONS(1609), 1, - sym_identifier, - STATE(788), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(280), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25135] = 10, - ACTIONS(1612), 1, - anon_sym_SLASH, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1616), 1, - anon_sym_SQUOTE, - ACTIONS(1619), 1, - anon_sym_DQUOTE, - ACTIONS(1622), 1, - sym_identifier, - STATE(711), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(273), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1422), 17, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25186] = 10, ACTIONS(1625), 1, - anon_sym_SLASH, + anon_sym_DASH, ACTIONS(1627), 1, - anon_sym_DASH, - ACTIONS(1629), 1, anon_sym_SQUOTE, - ACTIONS(1632), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(1635), 1, + ACTIONS(1633), 1, sym_identifier, - STATE(839), 1, + STATE(523), 1, sym_region_name, - ACTIONS(1441), 2, + ACTIONS(1556), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(291), 2, + STATE(278), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_END_FUNCTION, + ACTIONS(1558), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30093,6 +33342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, @@ -30100,72 +33352,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25237] = 10, - ACTIONS(1599), 1, + [28248] = 10, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1601), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - anon_sym_SQUOTE, - ACTIONS(1641), 1, - anon_sym_DQUOTE, - ACTIONS(1644), 1, - sym_identifier, - STATE(798), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(280), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1422), 17, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25288] = 10, ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1627), 1, anon_sym_DASH, + ACTIONS(1636), 1, + anon_sym_SQUOTE, + ACTIONS(1639), 1, + anon_sym_DQUOTE, + ACTIONS(1642), 1, + sym_identifier, + STATE(538), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(278), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28301] = 10, + ACTIONS(1645), 1, + anon_sym_SLASH, ACTIONS(1647), 1, + anon_sym_DASH, + ACTIONS(1649), 1, anon_sym_SQUOTE, - ACTIONS(1650), 1, + ACTIONS(1652), 1, anon_sym_DQUOTE, - ACTIONS(1653), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(848), 1, + STATE(461), 1, sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(291), 2, + STATE(281), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1422), 17, - anon_sym_END_FUNCTION, + ACTIONS(1573), 3, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + ACTIONS(1575), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30175,37 +33429,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_ELSE, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25339] = 10, - ACTIONS(1656), 1, + [28354] = 10, + ACTIONS(1645), 1, anon_sym_SLASH, + ACTIONS(1647), 1, + anon_sym_DASH, ACTIONS(1658), 1, - anon_sym_DASH, - ACTIONS(1660), 1, anon_sym_SQUOTE, - ACTIONS(1663), 1, + ACTIONS(1661), 1, anon_sym_DQUOTE, - ACTIONS(1666), 1, + ACTIONS(1664), 1, sym_identifier, - STATE(617), 1, + STATE(452), 1, sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(286), 2, + STATE(281), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1422), 17, + ACTIONS(1556), 3, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + ACTIONS(1558), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30215,109 +33472,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_ELSE, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25390] = 10, - ACTIONS(1669), 1, - anon_sym_SLASH, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - anon_sym_SQUOTE, - ACTIONS(1676), 1, - anon_sym_DQUOTE, - ACTIONS(1679), 1, - sym_identifier, - STATE(733), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(290), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1422), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25441] = 10, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(1658), 1, - anon_sym_DASH, - ACTIONS(1682), 1, - anon_sym_SQUOTE, - ACTIONS(1685), 1, - anon_sym_DQUOTE, - ACTIONS(1688), 1, - sym_identifier, - STATE(561), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, + [28407] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25492] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 6, + ACTIONS(1552), 6, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1414), 21, + ACTIONS(1554), 23, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -30339,30 +33517,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [25529] = 10, - ACTIONS(1691), 1, - anon_sym_SLASH, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - anon_sym_SQUOTE, - ACTIONS(1698), 1, - anon_sym_DQUOTE, - ACTIONS(1701), 1, - sym_identifier, - STATE(502), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(277), 2, - sym_string, - aux_sym_region_name_repeat1, + [28446] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1422), 17, + ACTIONS(1548), 6, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 23, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30376,75 +33548,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, - anon_sym_UNTIL, anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [25580] = 10, - ACTIONS(1691), 1, + [28485] = 9, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1693), 1, + ACTIONS(1669), 1, anon_sym_DASH, - ACTIONS(1704), 1, + ACTIONS(1671), 1, anon_sym_SQUOTE, - ACTIONS(1707), 1, + ACTIONS(1674), 1, anon_sym_DQUOTE, - ACTIONS(1710), 1, + ACTIONS(1677), 1, sym_identifier, - STATE(493), 1, - sym_region_name, - ACTIONS(1441), 2, + ACTIONS(1602), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(277), 2, + STATE(280), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25631] = 10, - ACTIONS(1713), 1, - anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_DASH, - ACTIONS(1717), 1, - anon_sym_SQUOTE, - ACTIONS(1720), 1, - anon_sym_DQUOTE, - ACTIONS(1723), 1, - sym_identifier, - STATE(579), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(274), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1443), 17, + ACTIONS(1604), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30455,6 +33585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, @@ -30462,30 +33594,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25682] = 10, - ACTIONS(1726), 1, - anon_sym_SLASH, - ACTIONS(1728), 1, + [28535] = 8, + ACTIONS(1683), 1, anon_sym_DASH, - ACTIONS(1730), 1, + ACTIONS(1686), 1, anon_sym_SQUOTE, - ACTIONS(1733), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1736), 1, + ACTIONS(1680), 2, + anon_sym_SLASH, sym_identifier, - STATE(529), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(288), 2, + STATE(279), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1443), 17, + ACTIONS(1586), 3, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + ACTIONS(1588), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30495,18 +33625,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_ELSE, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25733] = 10, - ACTIONS(1726), 1, + [28583] = 8, + ACTIONS(1695), 1, + anon_sym_DASH, + ACTIONS(1698), 1, + anon_sym_SQUOTE, + ACTIONS(1701), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(1692), 2, anon_sym_SLASH, - ACTIONS(1728), 1, + sym_identifier, + STATE(280), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28631] = 9, + ACTIONS(1704), 1, + anon_sym_SLASH, + ACTIONS(1706), 1, + anon_sym_DASH, + ACTIONS(1708), 1, + anon_sym_SQUOTE, + ACTIONS(1711), 1, + anon_sym_DQUOTE, + ACTIONS(1714), 1, + sym_identifier, + STATE(279), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1602), 3, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + ACTIONS(1604), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [28681] = 5, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1721), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1717), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1719), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [28723] = 5, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1725), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1717), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1719), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [28765] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1727), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1729), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [28803] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1731), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1733), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [28841] = 10, + ACTIONS(1735), 1, + anon_sym_SLASH, + ACTIONS(1737), 1, anon_sym_DASH, ACTIONS(1739), 1, anon_sym_SQUOTE, @@ -30514,19 +33870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1745), 1, sym_identifier, - STATE(539), 1, + STATE(612), 1, sym_region_name, - ACTIONS(1420), 2, + ACTIONS(1556), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(288), 2, + STATE(411), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1422), 17, + ACTIONS(1558), 17, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30544,7 +33900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25784] = 10, + [28892] = 10, ACTIONS(1748), 1, anon_sym_SLASH, ACTIONS(1750), 1, @@ -30555,19 +33911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1758), 1, sym_identifier, - STATE(639), 1, + STATE(713), 1, sym_region_name, - ACTIONS(1420), 2, + ACTIONS(1556), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(281), 2, + STATE(416), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1422), 17, + ACTIONS(1558), 17, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30585,7 +33941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [25835] = 10, + [28943] = 10, ACTIONS(1748), 1, anon_sym_SLASH, ACTIONS(1750), 1, @@ -30596,211 +33952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1767), 1, sym_identifier, - STATE(629), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(281), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25886] = 4, - ACTIONS(1568), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1560), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [25925] = 10, - ACTIONS(1612), 1, - anon_sym_SLASH, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1770), 1, - anon_sym_SQUOTE, - ACTIONS(1773), 1, - anon_sym_DQUOTE, - ACTIONS(1776), 1, - sym_identifier, - STATE(701), 1, - sym_region_name, - ACTIONS(1441), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(273), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1443), 17, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [25976] = 10, - ACTIONS(1713), 1, - anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_DASH, - ACTIONS(1779), 1, - anon_sym_SQUOTE, - ACTIONS(1782), 1, - anon_sym_DQUOTE, - ACTIONS(1785), 1, - sym_identifier, - STATE(589), 1, - sym_region_name, - ACTIONS(1420), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(274), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1422), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26027] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 6, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 21, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26064] = 10, - ACTIONS(1669), 1, - anon_sym_SLASH, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1791), 1, - anon_sym_DQUOTE, - ACTIONS(1794), 1, - sym_identifier, STATE(723), 1, sym_region_name, - ACTIONS(1441), 2, + ACTIONS(1573), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(290), 2, + STATE(416), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1443), 17, + ACTIONS(1575), 17, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30811,25 +33975,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, - anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [26115] = 3, + [28994] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1416), 5, + ACTIONS(1770), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, - anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1418), 21, + ACTIONS(1772), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -30839,226 +34008,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_SLASH, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [26151] = 8, - ACTIONS(1800), 1, - anon_sym_DASH, - ACTIONS(1803), 1, - anon_sym_SQUOTE, - ACTIONS(1806), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, + [29031] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, - ACTIONS(1797), 2, - anon_sym_SLASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, sym_identifier, - STATE(271), 2, + anon_sym_EXIT, + anon_sym_CONTINUE, + [29068] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1778), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1780), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [29105] = 10, + ACTIONS(1782), 1, + anon_sym_SLASH, + ACTIONS(1784), 1, + anon_sym_DASH, + ACTIONS(1786), 1, + anon_sym_SQUOTE, + ACTIONS(1789), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + sym_identifier, + STATE(975), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(424), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26197] = 8, - ACTIONS(1812), 1, - anon_sym_DASH, - ACTIONS(1815), 1, - anon_sym_SQUOTE, - ACTIONS(1818), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1809), 2, - anon_sym_SLASH, - sym_identifier, - STATE(272), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26243] = 9, - ACTIONS(1821), 1, - anon_sym_SLASH, - ACTIONS(1823), 1, - anon_sym_DASH, - ACTIONS(1825), 1, - anon_sym_SQUOTE, - ACTIONS(1828), 1, - anon_sym_DQUOTE, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(272), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26291] = 9, - ACTIONS(1834), 1, - anon_sym_SLASH, - ACTIONS(1836), 1, - anon_sym_DASH, - ACTIONS(1838), 1, - anon_sym_SQUOTE, - ACTIONS(1841), 1, - anon_sym_DQUOTE, - ACTIONS(1844), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(278), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26339] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 21, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26375] = 8, - ACTIONS(1850), 1, - anon_sym_DASH, - ACTIONS(1853), 1, - anon_sym_SQUOTE, - ACTIONS(1856), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1847), 2, - anon_sym_SLASH, - sym_identifier, - STATE(276), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, + ACTIONS(1575), 17, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -31076,104 +34125,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [26421] = 9, - ACTIONS(1859), 1, + [29156] = 10, + ACTIONS(1795), 1, anon_sym_SLASH, - ACTIONS(1861), 1, + ACTIONS(1797), 1, anon_sym_DASH, - ACTIONS(1863), 1, + ACTIONS(1799), 1, anon_sym_SQUOTE, - ACTIONS(1866), 1, + ACTIONS(1802), 1, anon_sym_DQUOTE, - ACTIONS(1869), 1, + ACTIONS(1805), 1, sym_identifier, - ACTIONS(1454), 2, + STATE(807), 1, + sym_region_name, + ACTIONS(1556), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(285), 2, + STATE(421), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26469] = 8, - ACTIONS(1875), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_SQUOTE, - ACTIONS(1881), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1872), 2, - anon_sym_SLASH, - sym_identifier, - STATE(278), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26515] = 8, - ACTIONS(1887), 1, - anon_sym_DASH, - ACTIONS(1890), 1, - anon_sym_SQUOTE, - ACTIONS(1893), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1884), 2, - anon_sym_SLASH, - sym_identifier, - STATE(279), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, + ACTIONS(1558), 17, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -31191,402 +34166,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [26561] = 9, - ACTIONS(1896), 1, + [29207] = 10, + ACTIONS(1795), 1, anon_sym_SLASH, - ACTIONS(1898), 1, + ACTIONS(1797), 1, anon_sym_DASH, - ACTIONS(1900), 1, + ACTIONS(1808), 1, anon_sym_SQUOTE, - ACTIONS(1903), 1, + ACTIONS(1811), 1, anon_sym_DQUOTE, - ACTIONS(1906), 1, + ACTIONS(1814), 1, sym_identifier, - ACTIONS(1454), 2, + STATE(817), 1, + sym_region_name, + ACTIONS(1573), 2, anon_sym_SEMI, anon_sym_POUND, - STATE(287), 2, + STATE(421), 2, sym_string, aux_sym_region_name_repeat1, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26609] = 9, - ACTIONS(1909), 1, - anon_sym_SLASH, - ACTIONS(1911), 1, - anon_sym_DASH, - ACTIONS(1913), 1, - anon_sym_SQUOTE, - ACTIONS(1916), 1, - anon_sym_DQUOTE, - ACTIONS(1919), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(283), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26657] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 6, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26693] = 8, - ACTIONS(1925), 1, - anon_sym_DASH, - ACTIONS(1928), 1, - anon_sym_SQUOTE, - ACTIONS(1931), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1922), 2, - anon_sym_SLASH, - sym_identifier, - STATE(283), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26739] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 6, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26775] = 8, - ACTIONS(1937), 1, - anon_sym_DASH, - ACTIONS(1940), 1, - anon_sym_SQUOTE, - ACTIONS(1943), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1934), 2, - anon_sym_SLASH, - sym_identifier, - STATE(285), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26821] = 9, - ACTIONS(1946), 1, - anon_sym_SLASH, - ACTIONS(1948), 1, - anon_sym_DASH, - ACTIONS(1950), 1, - anon_sym_SQUOTE, - ACTIONS(1953), 1, - anon_sym_DQUOTE, - ACTIONS(1956), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(289), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26869] = 8, - ACTIONS(1962), 1, - anon_sym_DASH, - ACTIONS(1965), 1, - anon_sym_SQUOTE, - ACTIONS(1968), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1959), 2, - anon_sym_SLASH, - sym_identifier, - STATE(287), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26915] = 9, - ACTIONS(1971), 1, - anon_sym_SLASH, - ACTIONS(1973), 1, - anon_sym_DASH, - ACTIONS(1975), 1, - anon_sym_SQUOTE, - ACTIONS(1978), 1, - anon_sym_DQUOTE, - ACTIONS(1981), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(271), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [26963] = 8, - ACTIONS(1987), 1, - anon_sym_DASH, - ACTIONS(1990), 1, - anon_sym_SQUOTE, - ACTIONS(1993), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 2, - anon_sym_SEMI, - anon_sym_POUND, - ACTIONS(1984), 2, - anon_sym_SLASH, - sym_identifier, - STATE(289), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1495), 17, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27009] = 9, - ACTIONS(1996), 1, - anon_sym_SLASH, - ACTIONS(1998), 1, - anon_sym_DASH, - ACTIONS(2000), 1, - anon_sym_SQUOTE, - ACTIONS(2003), 1, - anon_sym_DQUOTE, - ACTIONS(2006), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(279), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, + ACTIONS(1575), 17, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -31604,2008 +34207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_REGION, anon_sym_EXIT, anon_sym_CONTINUE, - [27057] = 9, - ACTIONS(2009), 1, - anon_sym_SLASH, - ACTIONS(2011), 1, - anon_sym_DASH, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2016), 1, - anon_sym_DQUOTE, - ACTIONS(2019), 1, - sym_identifier, - ACTIONS(1454), 2, - anon_sym_SEMI, - anon_sym_POUND, - STATE(276), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1456), 17, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27105] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27140] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2028), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2030), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27175] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27210] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27245] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27280] = 4, - ACTIONS(2046), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 4, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27317] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2049), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2051), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27352] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27387] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27422] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2061), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2063), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27457] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27492] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2069), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2072), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27527] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2075), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2077), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27562] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2079), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27597] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2083), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2085), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [27632] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27667] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2091), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27702] = 8, - ACTIONS(2095), 1, - anon_sym_EQ, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2097), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - [27747] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1560), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [27782] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2109), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2111), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27817] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2113), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2115), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27852] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2117), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2119), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27887] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2121), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2123), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27922] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27957] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2129), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2131), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [27992] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2133), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2135), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28027] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2137), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2139), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28062] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2141), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2143), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28097] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2095), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2097), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [28132] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2145), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2147), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28167] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28202] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2153), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2155), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28237] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28272] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28307] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28342] = 4, - ACTIONS(2171), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28379] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2174), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2176), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [28414] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28449] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2182), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2184), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28484] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2186), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2188), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [28519] = 5, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2095), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2097), 19, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [28558] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2180), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2178), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [28593] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28628] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2202), 1, - anon_sym_LT_GT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2097), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_OR, - [28679] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2204), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2206), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28714] = 10, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2202), 1, - anon_sym_LT_GT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2097), 13, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_OR, - anon_sym_XOR, - [28763] = 9, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2202), 1, - anon_sym_LT_GT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2097), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - [28810] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2208), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2210), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28845] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2212), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2214), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28880] = 4, - ACTIONS(2220), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2216), 4, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2218), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28917] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28952] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [28987] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29022] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2237), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2239), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29057] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2241), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2243), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29092] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29127] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2251), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2253), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29162] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2255), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2257), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29197] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1420), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1422), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29232] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2259), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2261), 20, - anon_sym_ORGANIZATION_BLOCK, - anon_sym_FUNCTION_BLOCK, - anon_sym_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [29267] = 3, + [29258] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2263), 5, + ACTIONS(1817), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2265), 20, + ACTIONS(1819), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33626,18 +34241,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29302] = 3, + [29295] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 5, + ACTIONS(1821), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 20, + ACTIONS(1823), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33658,18 +34275,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29337] = 3, + [29332] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 5, + ACTIONS(1825), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 20, + ACTIONS(1827), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33690,18 +34309,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29372] = 3, + [29369] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2271), 5, + ACTIONS(1829), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2273), 20, + ACTIONS(1832), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33722,18 +34343,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29407] = 3, + [29406] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 5, + ACTIONS(1835), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 20, + ACTIONS(1837), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33754,18 +34377,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29442] = 3, + [29443] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2279), 5, + ACTIONS(1839), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2281), 20, + ACTIONS(1842), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33786,18 +34411,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29477] = 3, + [29480] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2283), 5, + ACTIONS(1845), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2285), 20, + ACTIONS(1847), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33818,18 +34445,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29512] = 3, + [29517] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2287), 5, + ACTIONS(1849), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2289), 20, + ACTIONS(1851), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33850,18 +34479,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29547] = 3, + [29554] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2291), 5, + ACTIONS(1853), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2293), 20, + ACTIONS(1856), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33882,18 +34513,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29582] = 3, + [29591] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2295), 5, + ACTIONS(1859), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2297), 20, + ACTIONS(1861), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33914,18 +34547,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29617] = 3, + [29628] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 5, + ACTIONS(1863), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 20, + ACTIONS(1866), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33946,18 +34581,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29652] = 3, + [29665] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2303), 5, + ACTIONS(1869), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2306), 20, + ACTIONS(1872), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -33978,18 +34615,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29687] = 3, + [29702] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2309), 5, + ACTIONS(1875), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2312), 20, + ACTIONS(1877), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34010,18 +34649,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29722] = 3, + [29739] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2315), 5, + ACTIONS(1879), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2318), 20, + ACTIONS(1881), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34042,18 +34683,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29757] = 3, + [29776] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2321), 5, + ACTIONS(1883), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2323), 20, + ACTIONS(1886), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34074,18 +34717,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29792] = 3, + [29813] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2325), 5, + ACTIONS(1889), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2327), 20, + ACTIONS(1891), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34106,18 +34751,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29827] = 3, + [29850] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2329), 5, + ACTIONS(1893), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2331), 20, + ACTIONS(1895), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34138,18 +34785,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29862] = 3, + [29887] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 5, + ACTIONS(1897), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 20, + ACTIONS(1899), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34170,50 +34819,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29897] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2333), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_OF, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_THEN, - anon_sym_TO, - anon_sym_BY, - anon_sym_DO, - anon_sym_END_REPEAT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_OR, - anon_sym_XOR, - anon_sym_AND, - anon_sym_LT_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_STAR, - anon_sym_MOD, - [29932] = 3, + [29924] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2337), 5, + ACTIONS(1901), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2339), 20, + ACTIONS(1903), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34234,18 +34853,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [29967] = 3, + [29961] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 5, + ACTIONS(1905), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 20, + ACTIONS(1907), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34266,18 +34887,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30002] = 3, + [29998] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2345), 5, + ACTIONS(1909), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2347), 20, + ACTIONS(1911), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34298,18 +34921,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30037] = 3, + [30035] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2349), 5, + ACTIONS(1913), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2351), 20, + ACTIONS(1916), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34335,13 +34960,15 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2353), 5, + ACTIONS(1919), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2355), 20, + ACTIONS(1921), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34362,18 +34989,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30107] = 3, + [30109] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2357), 5, + ACTIONS(1923), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2359), 20, + ACTIONS(1925), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34394,18 +35023,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30142] = 3, + [30146] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 5, + ACTIONS(1927), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 20, + ACTIONS(1929), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34426,18 +35057,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30177] = 3, + [30183] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2367), 5, + ACTIONS(1931), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2370), 20, + ACTIONS(1933), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34458,18 +35091,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30212] = 3, + [30220] = 4, + ACTIONS(1939), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2373), 5, + ACTIONS(1935), 4, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2375), 20, + ACTIONS(1937), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, anon_sym_ORGANIZATION_BLOCK, anon_sym_FUNCTION_BLOCK, anon_sym_FUNCTION, @@ -34490,24 +35126,3987 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30247] = 6, - ACTIONS(2099), 1, + [30259] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1942), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1944), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30296] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30333] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30370] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1956), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1958), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30407] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30444] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30481] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1964), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1966), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30518] = 10, + ACTIONS(1735), 1, anon_sym_SLASH, - ACTIONS(2101), 2, + ACTIONS(1737), 1, + anon_sym_DASH, + ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(1974), 1, + sym_identifier, + STATE(622), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(411), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30569] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30606] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30643] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1985), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1987), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30680] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30717] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1993), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1995), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30754] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30791] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2001), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2003), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30828] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2005), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2007), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30865] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2009), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2011), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30902] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2013), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2015), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30939] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [30976] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2023), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2025), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31013] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31050] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2033), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2035), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31087] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31124] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2041), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2043), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31161] = 4, + ACTIONS(2049), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31200] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2052), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2054), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31237] = 4, + ACTIONS(1725), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1717), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1719), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2107), 2, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [31276] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2056), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2058), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31313] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31350] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31387] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2070), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2072), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31424] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2074), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2076), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31461] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31498] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2082), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2084), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31535] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31572] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31609] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2094), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2096), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31646] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2098), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2100), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31683] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31720] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31757] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2110), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2112), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31794] = 4, + ACTIONS(2114), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31833] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2117), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2119), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31870] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2121), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2123), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31907] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2125), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2127), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31944] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2129), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2131), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [31981] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2133), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2135), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32018] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2137), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2139), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32055] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2141), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2143), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32092] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2145), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2147), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32129] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2149), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2151), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32166] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2153), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2155), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32203] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2157), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2159), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32240] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2161), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2164), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32277] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2167), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2169), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32314] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2171), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2173), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32351] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2175), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2177), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32388] = 10, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2181), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_SQUOTE, + ACTIONS(2186), 1, + anon_sym_DQUOTE, + ACTIONS(2189), 1, + sym_identifier, + STATE(662), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(414), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32439] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2192), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2194), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32476] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32513] = 10, + ACTIONS(2200), 1, + anon_sym_SLASH, + ACTIONS(2202), 1, + anon_sym_DASH, + ACTIONS(2204), 1, + anon_sym_SQUOTE, + ACTIONS(2207), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + sym_identifier, + STATE(570), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(408), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32564] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2213), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2215), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32601] = 10, + ACTIONS(2200), 1, + anon_sym_SLASH, + ACTIONS(2202), 1, + anon_sym_DASH, + ACTIONS(2217), 1, + anon_sym_SQUOTE, + ACTIONS(2220), 1, + anon_sym_DQUOTE, + ACTIONS(2223), 1, + sym_identifier, + STATE(579), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(408), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32652] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32689] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2230), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2232), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32726] = 10, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(2236), 1, + anon_sym_DASH, + ACTIONS(2238), 1, + anon_sym_SQUOTE, + ACTIONS(2241), 1, + anon_sym_DQUOTE, + ACTIONS(2244), 1, + sym_identifier, + STATE(615), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32777] = 10, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(2236), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_SQUOTE, + ACTIONS(2250), 1, + anon_sym_DQUOTE, + ACTIONS(2253), 1, + sym_identifier, + STATE(663), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32828] = 10, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2181), 1, + anon_sym_DASH, + ACTIONS(2256), 1, + anon_sym_SQUOTE, + ACTIONS(2259), 1, + anon_sym_DQUOTE, + ACTIONS(2262), 1, + sym_identifier, + STATE(672), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(414), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32879] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2265), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2267), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32916] = 10, + ACTIONS(2269), 1, + anon_sym_SLASH, + ACTIONS(2271), 1, + anon_sym_DASH, + ACTIONS(2273), 1, + anon_sym_SQUOTE, + ACTIONS(2276), 1, + anon_sym_DQUOTE, + ACTIONS(2279), 1, + sym_identifier, + STATE(774), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(412), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [32967] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33004] = 10, + ACTIONS(2269), 1, + anon_sym_SLASH, + ACTIONS(2271), 1, + anon_sym_DASH, + ACTIONS(2282), 1, + anon_sym_SQUOTE, + ACTIONS(2285), 1, + anon_sym_DQUOTE, + ACTIONS(2288), 1, + sym_identifier, + STATE(788), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(412), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33055] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2293), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33092] = 10, + ACTIONS(2295), 1, + anon_sym_SLASH, + ACTIONS(2297), 1, + anon_sym_DASH, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2302), 1, + anon_sym_DQUOTE, + ACTIONS(2305), 1, + sym_identifier, + STATE(864), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(415), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33143] = 10, + ACTIONS(2295), 1, + anon_sym_SLASH, + ACTIONS(2297), 1, + anon_sym_DASH, + ACTIONS(2308), 1, + anon_sym_SQUOTE, + ACTIONS(2311), 1, + anon_sym_DQUOTE, + ACTIONS(2314), 1, + sym_identifier, + STATE(874), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(415), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33194] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2317), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2319), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33231] = 10, + ACTIONS(2321), 1, + anon_sym_SLASH, + ACTIONS(2323), 1, + anon_sym_DASH, + ACTIONS(2325), 1, + anon_sym_SQUOTE, + ACTIONS(2328), 1, + anon_sym_DQUOTE, + ACTIONS(2331), 1, + sym_identifier, + STATE(915), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(419), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33282] = 10, + ACTIONS(2321), 1, + anon_sym_SLASH, + ACTIONS(2323), 1, + anon_sym_DASH, + ACTIONS(2334), 1, + anon_sym_SQUOTE, + ACTIONS(2337), 1, + anon_sym_DQUOTE, + ACTIONS(2340), 1, + sym_identifier, + STATE(925), 1, + sym_region_name, + ACTIONS(1573), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(419), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1575), 17, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33333] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2343), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2345), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33370] = 10, + ACTIONS(1782), 1, + anon_sym_SLASH, + ACTIONS(1784), 1, + anon_sym_DASH, + ACTIONS(2347), 1, + anon_sym_SQUOTE, + ACTIONS(2350), 1, + anon_sym_DQUOTE, + ACTIONS(2353), 1, + sym_identifier, + STATE(965), 1, + sym_region_name, + ACTIONS(1556), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(424), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1558), 17, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33421] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2356), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2358), 22, + anon_sym_TYPE, + anon_sym_DATA_BLOCK, + anon_sym_ORGANIZATION_BLOCK, + anon_sym_FUNCTION_BLOCK, + anon_sym_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33458] = 8, + ACTIONS(2363), 1, + anon_sym_DASH, + ACTIONS(2366), 1, + anon_sym_SQUOTE, + ACTIONS(2369), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2360), 2, + anon_sym_SLASH, + sym_identifier, + STATE(403), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33504] = 8, + ACTIONS(2375), 1, + anon_sym_DASH, + ACTIONS(2378), 1, + anon_sym_SQUOTE, + ACTIONS(2381), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2372), 2, + anon_sym_SLASH, + sym_identifier, + STATE(404), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33550] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 21, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33586] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 21, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33622] = 9, + ACTIONS(2384), 1, + anon_sym_SLASH, + ACTIONS(2386), 1, + anon_sym_DASH, + ACTIONS(2388), 1, + anon_sym_SQUOTE, + ACTIONS(2391), 1, + anon_sym_DQUOTE, + ACTIONS(2394), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(403), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33670] = 9, + ACTIONS(2397), 1, + anon_sym_SLASH, + ACTIONS(2399), 1, + anon_sym_DASH, + ACTIONS(2401), 1, + anon_sym_SQUOTE, + ACTIONS(2404), 1, + anon_sym_DQUOTE, + ACTIONS(2407), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(410), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33718] = 8, + ACTIONS(2413), 1, + anon_sym_DASH, + ACTIONS(2416), 1, + anon_sym_SQUOTE, + ACTIONS(2419), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2410), 2, + anon_sym_SLASH, + sym_identifier, + STATE(409), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33764] = 8, + ACTIONS(2425), 1, + anon_sym_DASH, + ACTIONS(2428), 1, + anon_sym_SQUOTE, + ACTIONS(2431), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2422), 2, + anon_sym_SLASH, + sym_identifier, + STATE(410), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33810] = 9, + ACTIONS(2434), 1, + anon_sym_SLASH, + ACTIONS(2436), 1, + anon_sym_DASH, + ACTIONS(2438), 1, + anon_sym_SQUOTE, + ACTIONS(2441), 1, + anon_sym_DQUOTE, + ACTIONS(2444), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(409), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33858] = 9, + ACTIONS(2447), 1, + anon_sym_SLASH, + ACTIONS(2449), 1, + anon_sym_DASH, + ACTIONS(2451), 1, + anon_sym_SQUOTE, + ACTIONS(2454), 1, + anon_sym_DQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(413), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33906] = 8, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2466), 1, + anon_sym_SQUOTE, + ACTIONS(2469), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2460), 2, + anon_sym_SLASH, + sym_identifier, + STATE(413), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [33952] = 9, + ACTIONS(2472), 1, + anon_sym_SLASH, + ACTIONS(2474), 1, + anon_sym_DASH, + ACTIONS(2476), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + anon_sym_DQUOTE, + ACTIONS(2482), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(425), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34000] = 9, + ACTIONS(2485), 1, + anon_sym_SLASH, + ACTIONS(2487), 1, + anon_sym_DASH, + ACTIONS(2489), 1, + anon_sym_SQUOTE, + ACTIONS(2492), 1, + anon_sym_DQUOTE, + ACTIONS(2495), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(417), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34048] = 9, + ACTIONS(2498), 1, + anon_sym_SLASH, + ACTIONS(2500), 1, + anon_sym_DASH, + ACTIONS(2502), 1, + anon_sym_SQUOTE, + ACTIONS(2505), 1, + anon_sym_DQUOTE, + ACTIONS(2508), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(423), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34096] = 8, + ACTIONS(2514), 1, + anon_sym_DASH, + ACTIONS(2517), 1, + anon_sym_SQUOTE, + ACTIONS(2520), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2511), 2, + anon_sym_SLASH, + sym_identifier, + STATE(417), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34142] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 6, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34178] = 9, + ACTIONS(2523), 1, + anon_sym_SLASH, + ACTIONS(2525), 1, + anon_sym_DASH, + ACTIONS(2527), 1, + anon_sym_SQUOTE, + ACTIONS(2530), 1, + anon_sym_DQUOTE, + ACTIONS(2533), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(422), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34226] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 6, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34262] = 9, + ACTIONS(2536), 1, + anon_sym_SLASH, + ACTIONS(2538), 1, + anon_sym_DASH, + ACTIONS(2540), 1, + anon_sym_SQUOTE, + ACTIONS(2543), 1, + anon_sym_DQUOTE, + ACTIONS(2546), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(404), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34310] = 8, + ACTIONS(2552), 1, + anon_sym_DASH, + ACTIONS(2555), 1, + anon_sym_SQUOTE, + ACTIONS(2558), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2549), 2, + anon_sym_SLASH, + sym_identifier, + STATE(422), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34356] = 8, + ACTIONS(2564), 1, + anon_sym_DASH, + ACTIONS(2567), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2561), 2, + anon_sym_SLASH, + sym_identifier, + STATE(423), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34402] = 9, + ACTIONS(2573), 1, + anon_sym_SLASH, + ACTIONS(2575), 1, + anon_sym_DASH, + ACTIONS(2577), 1, + anon_sym_SQUOTE, + ACTIONS(2580), 1, + anon_sym_DQUOTE, + ACTIONS(2583), 1, + sym_identifier, + ACTIONS(1602), 2, + anon_sym_SEMI, + anon_sym_POUND, + STATE(426), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1604), 17, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34450] = 8, + ACTIONS(2589), 1, + anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_SQUOTE, + ACTIONS(2595), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2586), 2, + anon_sym_SLASH, + sym_identifier, + STATE(425), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34496] = 8, + ACTIONS(2601), 1, + anon_sym_DASH, + ACTIONS(2604), 1, + anon_sym_SQUOTE, + ACTIONS(2607), 1, + anon_sym_DQUOTE, + ACTIONS(1586), 2, + anon_sym_SEMI, + anon_sym_POUND, + ACTIONS(2598), 2, + anon_sym_SLASH, + sym_identifier, + STATE(426), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1588), 17, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_EXIT, + anon_sym_CONTINUE, + [34542] = 9, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2618), 1, + anon_sym_LT_GT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, anon_sym_STAR, anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2095), 3, + ACTIONS(2612), 14, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + [34589] = 11, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2618), 1, + anon_sym_LT_GT, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2612), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_OR, + [34640] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1776), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1774), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34675] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2228), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2226), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34710] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2630), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2632), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34745] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2634), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2636), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34780] = 6, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2638), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2097), 17, + ACTIONS(2612), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RBRACK, @@ -34525,17 +39124,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [30288] = 3, + [34821] = 5, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(2638), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2612), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [34860] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1991), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1989), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34895] = 8, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2638), 1, + anon_sym_EQ, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2612), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + [34940] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2638), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2612), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [34975] = 10, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2618), 1, + anon_sym_LT_GT, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2612), 13, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_OR, + anon_sym_XOR, + [35024] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1717), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1719), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_OF, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_THEN, + anon_sym_TO, + anon_sym_BY, + anon_sym_DO, + anon_sym_END_REPEAT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_OR, + anon_sym_XOR, + anon_sym_AND, + anon_sym_LT_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_MOD, + [35059] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35093] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35127] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 20, + ACTIONS(2047), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34556,18 +39423,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30322] = 3, + [35161] = 4, + ACTIONS(2640), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2271), 5, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, - sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2273), 19, + ACTIONS(2047), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34577,9 +39444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, anon_sym_ELSE, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -34587,18 +39455,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30356] = 3, + [35197] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 5, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, - sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 19, + ACTIONS(1877), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34608,9 +39475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, anon_sym_ELSE, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -34618,18 +39486,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30390] = 3, + [35231] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2042), 5, + ACTIONS(1552), 5, anon_sym_SEMI, anon_sym_POUND, - sym_number, + anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2044), 19, + ACTIONS(1554), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34639,48 +39507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_ELSE, + anon_sym_END_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_SLASH, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30424] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30458] = 3, + [35265] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -34711,18 +39548,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30492] = 3, + [35299] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2223), 5, + ACTIONS(2196), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2226), 19, + ACTIONS(2198), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34742,18 +39579,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30526] = 3, + [35333] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2036), 5, + ACTIONS(1901), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2039), 19, + ACTIONS(1903), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34773,49 +39610,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30560] = 3, + [35367] = 4, + ACTIONS(2643), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30594] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 5, - anon_sym_SEMI, + ACTIONS(1935), 4, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2193), 19, + ACTIONS(1937), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34835,18 +39642,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30628] = 3, + [35403] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2349), 5, + ACTIONS(1946), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2351), 19, + ACTIONS(1948), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34866,80 +39673,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30662] = 3, + [35437] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30696] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30730] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 5, + ACTIONS(1960), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2306), 19, + ACTIONS(1962), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34959,18 +39704,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30764] = 3, + [35471] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2309), 5, + ACTIONS(1573), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2312), 19, + ACTIONS(1575), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -34990,637 +39735,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [30798] = 3, + [35505] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2315), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30832] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30866] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30900] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30934] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [30968] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2176), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2174), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31002] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2361), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2364), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31036] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31070] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31104] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2069), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2072), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31138] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31172] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31206] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2186), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31240] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31274] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31308] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31342] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31376] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31410] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31444] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31478] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2375), 20, + ACTIONS(1881), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -35641,235 +39766,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [31512] = 3, + [35539] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31546] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31580] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31614] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31648] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1414), 19, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31682] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31716] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31750] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 5, + ACTIONS(1977), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2248), 19, + ACTIONS(1979), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -35889,267 +39797,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [31784] = 3, + [35573] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1416), 5, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_SLASH, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31818] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31852] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2291), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2293), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31886] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2121), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2123), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31920] = 4, - ACTIONS(2377), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2216), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2218), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31956] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2237), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2239), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [31990] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2251), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2253), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32024] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1420), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1422), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32058] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2291), 5, + ACTIONS(1997), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2293), 19, + ACTIONS(1999), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36169,111 +39828,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32092] = 3, + [35607] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2269), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32126] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2277), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32160] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2028), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2030), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32194] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 5, + ACTIONS(2086), 5, anon_sym_SEMI, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2235), 19, + ACTIONS(2088), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36293,18 +39859,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32228] = 4, - ACTIONS(2380), 1, - anon_sym_SEMI, + [35641] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, + ACTIONS(2102), 5, + anon_sym_SEMI, anon_sym_POUND, + sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 20, + ACTIONS(2104), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36314,10 +39880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, anon_sym_ELSE, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -36325,17 +39890,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32264] = 3, + [35675] = 4, + ACTIONS(2646), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, + ACTIONS(2102), 4, anon_sym_POUND, + sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2055), 20, + ACTIONS(2104), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36345,10 +39912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, anon_sym_ELSE, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -36356,163 +39922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32298] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32332] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32366] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32400] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32434] = 4, - ACTIONS(2383), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32470] = 3, + [35711] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -36543,81 +39953,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32504] = 3, + [35745] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2229), 4, + ACTIONS(2129), 5, anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32538] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32572] = 4, - ACTIONS(2386), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2216), 4, anon_sym_POUND, sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 19, + ACTIONS(2131), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36637,17 +39984,452 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32608] = 3, + [35779] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2271), 4, + ACTIONS(2133), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2135), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35813] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1778), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1780), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35847] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35881] = 4, + ACTIONS(2649), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35917] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1875), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1877), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35951] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1879), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1881), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [35985] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36019] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36053] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36087] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36121] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36155] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36189] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36223] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36257] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2273), 20, + ACTIONS(1925), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36668,17 +40450,172 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32642] = 3, + [36291] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 4, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36325] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36359] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36393] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36427] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36461] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 20, + ACTIONS(1983), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36699,17 +40636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32676] = 3, + [36495] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2042), 4, + ACTIONS(2037), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2044), 20, + ACTIONS(2039), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36730,17 +40667,172 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32710] = 3, + [36529] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2087), 4, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36563] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36597] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36631] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36665] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36699] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2089), 20, + ACTIONS(2092), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36761,7 +40853,534 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32744] = 3, + [36733] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36767] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36801] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36835] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36869] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36903] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36937] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [36971] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37005] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37039] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37073] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37107] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37141] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37175] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37209] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37243] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37277] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37311] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -36792,17 +41411,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32778] = 3, + [37345] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2223), 4, + ACTIONS(2196), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2226), 20, + ACTIONS(2198), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -36823,173 +41442,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [32812] = 3, + [37379] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2239), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32846] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32880] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32914] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2251), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2253), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32948] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1420), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1422), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [32982] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1412), 5, + ACTIONS(1552), 5, anon_sym_SEMI, anon_sym_POUND, anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1414), 19, + ACTIONS(1554), 19, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -37009,17 +41473,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33016] = 3, + [37413] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2303), 4, + ACTIONS(2226), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2306), 20, + ACTIONS(2228), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37040,17 +41504,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33050] = 3, + [37447] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2309), 4, + ACTIONS(1863), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2312), 20, + ACTIONS(1866), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37071,17 +41535,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33084] = 3, + [37481] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2315), 4, + ACTIONS(1869), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2318), 20, + ACTIONS(1872), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37102,143 +41566,392 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33118] = 3, + [37515] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 20, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_ELSIF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33152] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33186] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2267), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2269), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33220] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2275), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2277), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33254] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1416), 5, + ACTIONS(1548), 5, anon_sym_SEMI, anon_sym_POUND, anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1418), 19, - anon_sym_END_FUNCTION, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37549] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37583] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37617] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37651] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37685] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37719] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37753] = 4, + ACTIONS(2652), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37789] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37823] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37857] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37891] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [37925] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37257,17 +41970,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33288] = 3, + [37959] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(1977), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 20, + ACTIONS(1979), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37288,17 +42001,48 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33322] = 3, + [37993] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38027] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 20, + ACTIONS(1999), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37319,17 +42063,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33356] = 3, + [38061] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 20, + ACTIONS(2088), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37350,79 +42094,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33390] = 3, + [38095] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2030), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33424] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33458] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 20, + ACTIONS(2104), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37443,17 +42125,80 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33492] = 3, + [38129] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2178), 4, + ACTIONS(1552), 5, anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38163] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38197] = 4, + ACTIONS(2655), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2180), 20, + ACTIONS(2104), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37474,17 +42219,48 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33526] = 3, + [38233] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2149), 4, + ACTIONS(1548), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1550), 19, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38267] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2121), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2151), 20, + ACTIONS(2123), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37505,80 +42281,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33560] = 4, - ACTIONS(2389), 1, - anon_sym_SEMI, + [38301] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33596] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33630] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, + ACTIONS(2129), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 20, + ACTIONS(2131), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37599,18 +42312,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33664] = 3, + [38335] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2057), 5, + ACTIONS(1552), 5, anon_sym_SEMI, anon_sym_POUND, - sym_number, + anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2059), 19, + ACTIONS(1554), 19, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37620,28 +42333,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_ELSE, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, + anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_SLASH, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33698] = 3, + [38369] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2065), 5, + ACTIONS(1552), 5, anon_sym_SEMI, anon_sym_POUND, - sym_number, + anon_sym_DASH, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2067), 19, + ACTIONS(1554), 19, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37651,152 +42365,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_ELSE, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_SLASH, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33732] = 3, + [38403] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2157), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33766] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33800] = 4, - ACTIONS(2392), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33836] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 5, - anon_sym_SEMI, - anon_sym_POUND, - sym_number, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 19, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_ELSE, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [33870] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 20, + ACTIONS(2135), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37817,17 +42405,48 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33904] = 3, + [38437] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(2066), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38471] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(2293), 20, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37838,6 +42457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, @@ -37846,17 +42467,112 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33936] = 3, + [38505] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(2291), 5, anon_sym_SEMI, anon_sym_POUND, + sym_number, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(2293), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38539] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38573] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 5, + anon_sym_SEMI, + anon_sym_POUND, + sym_number, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38607] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37870,23 +42586,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, - anon_sym_UNTIL, anon_sym_REGION, + anon_sym_SLASH, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [33968] = 4, - ACTIONS(2395), 1, - anon_sym_SEMI, + [38641] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(1778), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(1780), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38675] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 20, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_ELSIF, + anon_sym_ELSE, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38709] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1552), 5, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_DASH, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1554), 19, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_SLASH, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38743] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -37899,81 +42707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, + anon_sym_END_WHILE, anon_sym_REPEAT, - anon_sym_UNTIL, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34002] = 3, + [38775] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2060), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34034] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2251), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2253), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34066] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(2063), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -37992,17 +42742,104 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34098] = 3, + [38807] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(1829), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(1832), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38839] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38871] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [38903] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38021,17 +42858,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34130] = 3, + [38935] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, + ACTIONS(1905), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(1907), 18, + anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38045,22 +42883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, - anon_sym_UNTIL, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34162] = 3, + [38967] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1913), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1916), 18, + anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38074,139 +42912,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, - anon_sym_UNTIL, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34194] = 3, + [38999] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39031] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39063] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2030), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34226] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34258] = 4, - ACTIONS(2398), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34292] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34324] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -38225,17 +43003,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34356] = 3, + [39095] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2057), 4, + ACTIONS(1863), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2059), 18, + ACTIONS(1866), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38254,17 +43032,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34388] = 3, + [39127] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2065), 4, + ACTIONS(1869), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2067), 18, + ACTIONS(1872), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38283,17 +43061,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34420] = 3, + [39159] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2157), 4, + ACTIONS(1883), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2159), 18, + ACTIONS(1886), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38312,17 +43090,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34452] = 3, + [39191] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 4, + ACTIONS(1901), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(1903), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38341,18 +43119,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34484] = 4, - ACTIONS(2401), 1, + [39223] = 4, + ACTIONS(2658), 1, anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 3, + ACTIONS(1935), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(1937), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38371,133 +43149,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34518] = 3, + [39257] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2373), 4, + ACTIONS(2226), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34550] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34582] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34614] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34646] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, + ACTIONS(2228), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -38516,162 +43178,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34678] = 3, + [39289] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2229), 4, + ACTIONS(1863), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34710] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34742] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34774] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34806] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [34838] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 18, + ACTIONS(1866), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -38690,17 +43207,75 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34870] = 3, + [39321] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2087), 4, + ACTIONS(1869), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2089), 18, + ACTIONS(1872), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39353] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39385] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38719,7 +43294,240 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34902] = 3, + [39417] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39449] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39481] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39513] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39545] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39577] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39609] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39641] = 4, + ACTIONS(2661), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39675] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -38748,17 +43556,164 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34934] = 3, + [39707] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2279), 4, + ACTIONS(2129), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2281), 18, + ACTIONS(2131), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39739] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2133), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2135), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39771] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1778), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1780), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39803] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39835] = 4, + ACTIONS(2664), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39869] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38773,21 +43728,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34966] = 3, + [39901] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2125), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2127), 18, + ACTIONS(1877), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38801,22 +43755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, + anon_sym_UNTIL, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [34998] = 3, + [39933] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2349), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2351), 18, + ACTIONS(1881), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38830,22 +43784,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, + anon_sym_UNTIL, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35030] = 3, + [39965] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2245), 4, + ACTIONS(1923), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [39997] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40029] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38864,7 +43876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35062] = 3, + [40061] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -38893,17 +43905,162 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35094] = 3, + [40093] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2245), 4, + ACTIONS(2078), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2080), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40125] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40157] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40189] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40221] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40253] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38922,7 +44079,706 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35126] = 3, + [40285] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2293), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40317] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40349] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40381] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40413] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2161), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2164), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40445] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40477] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2161), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2164), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40509] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40541] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40573] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40605] = 4, + ACTIONS(2667), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40639] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40671] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40703] = 4, + ACTIONS(2670), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40737] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40769] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40801] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40833] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40865] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40897] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40929] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40961] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [40993] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41025] = 4, + ACTIONS(2673), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41059] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -38951,18 +44807,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35158] = 4, - ACTIONS(2404), 1, - anon_sym_SEMI, + [41091] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -38981,17 +44836,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35192] = 3, + [41123] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39010,17 +44865,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35224] = 3, + [41155] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39039,17 +44894,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35256] = 3, + [41187] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39068,7 +44923,240 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35288] = 3, + [41219] = 4, + ACTIONS(2676), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41253] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1875), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1877), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41285] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1879), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1881), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41317] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41349] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41381] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41413] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41445] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41477] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -39079,6 +45167,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2293), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41509] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41541] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41573] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39097,17 +45272,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35320] = 3, + [41605] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, + ACTIONS(2060), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(2063), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39126,17 +45301,104 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35352] = 3, + [41637] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(1829), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(1832), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41669] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41701] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41733] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39155,17 +45417,75 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35384] = 3, + [41765] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1999), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41797] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41829] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39184,12 +45504,70 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35416] = 3, + [41861] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41893] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [41925] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -39213,17 +45591,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35448] = 3, + [41957] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(2104), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39236,24 +45614,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35480] = 4, - ACTIONS(2407), 1, + [41989] = 4, + ACTIONS(2679), 1, anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, + ACTIONS(2102), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(2104), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39266,188 +45644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35514] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35546] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35578] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35610] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35642] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35674] = 4, - ACTIONS(2410), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35708] = 3, + [42023] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -39476,308 +45679,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [35740] = 3, + [42055] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2229), 4, + ACTIONS(2129), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35772] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35804] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35836] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35868] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35900] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35932] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35964] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [35996] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36028] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36060] = 4, - ACTIONS(2413), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2216), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -39796,7 +45708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36094] = 3, + [42087] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -39816,403 +45728,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36126] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36158] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36190] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36222] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2237), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2239), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, + anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36254] = 3, + [42119] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(2196), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36286] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1420), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(1422), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36318] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36350] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36382] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36414] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36446] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2269), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36478] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2186), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36510] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2277), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [36542] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2198), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40231,17 +45766,133 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36574] = 3, + [42151] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2291), 4, + ACTIONS(2226), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2293), 18, + ACTIONS(2228), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42183] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42215] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42247] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_END_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42279] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40260,17 +45911,192 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36606] = 3, + [42311] = 4, + ACTIONS(2682), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42345] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(1948), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42377] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42409] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42441] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2133), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2135), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42473] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42505] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40289,17 +46115,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36638] = 3, + [42537] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 18, + ACTIONS(1999), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40309,26 +46135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36670] = 3, + [42569] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 18, + ACTIONS(2088), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40338,26 +46164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36702] = 3, + [42601] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(2104), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40367,16 +46193,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, + anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36734] = 3, + [42633] = 4, + ACTIONS(2685), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42667] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -40405,18 +46261,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36766] = 4, - ACTIONS(2416), 1, - anon_sym_SEMI, + [42699] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40435,17 +46290,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36800] = 3, + [42731] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40464,17 +46319,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36832] = 3, + [42763] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40493,17 +46348,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36864] = 3, + [42795] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40522,17 +46377,47 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36896] = 3, + [42827] = 4, + ACTIONS(2688), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(2045), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42861] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2030), 18, + ACTIONS(1780), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40551,17 +46436,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36928] = 3, + [42893] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(1877), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40580,17 +46465,278 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36960] = 3, + [42925] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(1881), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42957] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [42989] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43021] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43053] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43085] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43117] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2293), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43149] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43181] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43213] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40609,17 +46755,133 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [36992] = 3, + [43245] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(2060), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(2063), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43277] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43309] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43341] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43373] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40638,17 +46900,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37024] = 3, + [43405] = 4, + ACTIONS(2691), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2030), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40658,260 +46921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37056] = 3, + [43439] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(1905), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37088] = 4, - ACTIONS(2419), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37122] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37154] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37186] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37218] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37250] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37282] = 4, - ACTIONS(2422), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37316] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, + ACTIONS(1907), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40930,17 +46959,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37348] = 3, + [43471] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2229), 4, + ACTIONS(1913), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2231), 18, + ACTIONS(1916), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40959,17 +46988,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37380] = 3, + [43503] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2233), 4, + ACTIONS(1950), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2235), 18, + ACTIONS(1953), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -40988,17 +47017,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37412] = 3, + [43535] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2271), 4, + ACTIONS(2017), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2273), 18, + ACTIONS(2020), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41017,17 +47046,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37444] = 3, + [43567] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 4, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 18, + ACTIONS(2030), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41046,191 +47075,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37476] = 3, + [43599] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2042), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37508] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37540] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37572] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37604] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37636] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37668] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41243,13 +47098,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, - anon_sym_END_WHILE, anon_sym_REPEAT, + anon_sym_UNTIL, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37700] = 3, + [43631] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1875), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1877), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43663] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1879), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1881), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43695] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43727] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -41269,8 +47211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -41278,395 +47220,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [37732] = 3, + [43759] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2223), 4, + ACTIONS(2196), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37764] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37796] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37828] = 4, - ACTIONS(2425), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37862] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37894] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_END_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37926] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37958] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [37990] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38022] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38054] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38086] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38118] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38150] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2198), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41685,17 +47249,133 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38182] = 3, + [43791] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2291), 4, + ACTIONS(2226), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2293), 18, + ACTIONS(2228), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43823] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43855] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43887] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43919] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41714,17 +47394,192 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38214] = 3, + [43951] = 4, + ACTIONS(2694), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [43985] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(1948), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44017] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44049] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44081] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44113] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44145] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41743,17 +47598,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38246] = 3, + [44177] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 18, + ACTIONS(1999), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41763,8 +47618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -41772,17 +47627,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38278] = 3, + [44209] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 18, + ACTIONS(2088), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41792,8 +47647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -41801,17 +47656,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38310] = 3, + [44241] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(2104), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41821,8 +47676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, + anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -41830,7 +47685,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38342] = 3, + [44273] = 4, + ACTIONS(2697), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44307] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -41859,18 +47744,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38374] = 4, - ACTIONS(2428), 1, - anon_sym_SEMI, + [44339] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41889,17 +47773,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38408] = 3, + [44371] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41918,17 +47802,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38440] = 3, + [44403] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41947,17 +47831,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38472] = 3, + [44435] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -41976,46 +47860,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38504] = 3, + [44467] = 4, + ACTIONS(2700), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38536] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42034,17 +47890,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38568] = 3, + [44501] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42063,17 +47919,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38600] = 3, + [44533] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1877), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42092,12 +47948,592 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38632] = 3, + [44565] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1879), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1881), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44597] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44629] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44661] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44693] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44725] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44757] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44789] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44821] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2293), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44853] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44885] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44917] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44949] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [44981] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45013] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45045] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45077] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_END_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45109] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45141] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45173] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45205] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -42121,455 +48557,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [38664] = 3, + [45237] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(2060), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38696] = 4, - ACTIONS(2431), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2032), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38730] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38762] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38794] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38826] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38858] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38890] = 4, - ACTIONS(2434), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38924] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_END_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38956] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [38988] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39020] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39052] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39084] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39116] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39148] = 4, - ACTIONS(2437), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(2063), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42588,46 +48586,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39182] = 3, + [45269] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2178), 4, + ACTIONS(1829), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2180), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39214] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 18, + ACTIONS(1832), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42646,17 +48615,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39246] = 3, + [45301] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2233), 4, + ACTIONS(1839), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2235), 18, + ACTIONS(1842), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42675,17 +48644,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39278] = 3, + [45333] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2149), 4, + ACTIONS(1853), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2151), 18, + ACTIONS(1856), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42695,16 +48664,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45365] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39310] = 3, + [45397] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45429] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45461] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45493] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45525] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45557] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45589] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45621] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_END_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45653] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -42715,6 +48945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2164), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42725,7 +48956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -42733,17 +48963,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39342] = 3, + [45685] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2223), 4, + ACTIONS(2196), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2226), 18, + ACTIONS(2198), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42754,7 +48985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -42762,75 +48992,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39374] = 3, + [45717] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2036), 4, + ACTIONS(2226), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39406] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39438] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, + ACTIONS(2228), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42849,17 +49021,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39470] = 3, + [45749] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 4, + ACTIONS(1863), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 18, + ACTIONS(1866), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42878,17 +49050,76 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39502] = 3, + [45781] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 4, + ACTIONS(1869), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 18, + ACTIONS(1872), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45813] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45845] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42898,7 +49129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, anon_sym_IF, - anon_sym_END_IF, anon_sym_CASE, anon_sym_FOR, anon_sym_WHILE, @@ -42907,17 +49137,76 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39534] = 3, + [45877] = 4, + ACTIONS(2703), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2303), 4, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45911] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2306), 18, + ACTIONS(1948), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [45943] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42936,17 +49225,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39566] = 3, + [45975] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2309), 4, + ACTIONS(1960), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2312), 18, + ACTIONS(1962), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42957,7 +49247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -42965,17 +49254,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39598] = 3, + [46007] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2315), 4, + ACTIONS(1573), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2318), 18, + ACTIONS(1575), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -42986,7 +49276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -42994,17 +49283,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39630] = 3, + [46039] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2367), 4, + ACTIONS(1977), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2370), 18, + ACTIONS(1979), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43015,7 +49305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_NON_RETAIN, anon_sym_IF, anon_sym_CASE, - anon_sym_END_CASE, anon_sym_FOR, anon_sym_WHILE, anon_sym_REPEAT, @@ -43023,17 +49312,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39662] = 3, + [46071] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2042), 4, + ACTIONS(1989), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2044), 18, + ACTIONS(1991), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43052,47 +49341,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39694] = 3, + [46103] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2087), 4, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39726] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1999), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43110,18 +49370,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39758] = 3, + [46135] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2279), 4, + ACTIONS(2066), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2068), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43133,477 +49392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [39790] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39822] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39854] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2176), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2174), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39886] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2361), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2364), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39918] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39950] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2069), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2072), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [39982] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40014] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40046] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40078] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40110] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40142] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2186), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40174] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40206] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40238] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40270] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40302] = 3, + [46167] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -43614,7 +49410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2293), 18, - anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43626,23 +49421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40334] = 3, + [46199] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(2078), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(2080), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43654,24 +49450,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40366] = 3, + [46231] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2178), 4, + ACTIONS(2106), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2180), 18, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46263] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43690,17 +49515,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40398] = 3, + [46295] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 18, + ACTIONS(2088), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43715,21 +49541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40430] = 3, + [46327] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 18, + ACTIONS(2104), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43744,21 +49570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40462] = 3, + [46359] = 4, + ACTIONS(2706), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, - anon_sym_SEMI, + ACTIONS(2102), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(2104), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43773,11 +49600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40494] = 3, + [46393] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -43788,7 +49614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2123), 18, - anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43806,19 +49632,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40526] = 4, - ACTIONS(2440), 1, - anon_sym_SEMI, + [46425] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2131), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43836,18 +49661,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40560] = 3, + [46457] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2135), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -43865,133 +49690,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40592] = 3, + [46489] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2373), 4, + ACTIONS(1905), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40624] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40656] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40688] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40720] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, + ACTIONS(1907), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44010,18 +49719,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40752] = 3, + [46521] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1780), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44039,18 +49748,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40784] = 3, + [46553] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2047), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44068,18 +49777,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40816] = 3, + [46585] = 4, + ACTIONS(2709), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2047), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44097,17 +49807,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40848] = 3, + [46619] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44126,18 +49836,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40880] = 3, + [46651] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1877), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44155,47 +49865,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40912] = 3, + [46683] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_END_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [40944] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2028), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2030), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1881), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44213,18 +49894,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [40976] = 3, + [46715] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(1923), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1925), 18, + anon_sym_END_DATA_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44242,163 +49923,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41008] = 4, - ACTIONS(2443), 1, - anon_sym_SEMI, + [46747] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2034), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41042] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2053), 4, + ACTIONS(2161), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41074] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41106] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41138] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41170] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2164), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44417,7 +49952,298 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41202] = 3, + [46779] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46811] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46843] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46875] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46907] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46939] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [46971] = 4, + ACTIONS(2712), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47005] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47037] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47069] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47101] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -44428,6 +50254,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, ACTIONS(2293), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47133] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44446,17 +50301,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41234] = 3, + [47165] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 4, + ACTIONS(2078), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(2080), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -44475,19 +50330,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41266] = 4, - ACTIONS(2446), 1, - anon_sym_SEMI, + [47197] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 3, + ACTIONS(1997), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(1999), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44499,23 +50352,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41300] = 3, + [47229] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2178), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2180), 18, + ACTIONS(2088), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44527,25 +50381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, - anon_sym_END_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41332] = 3, + [47261] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2229), 4, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_END_ORGANIZATION_BLOCK, + ACTIONS(2104), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44557,13 +50410,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IF, anon_sym_CASE, anon_sym_FOR, + anon_sym_END_FOR, anon_sym_WHILE, anon_sym_REPEAT, anon_sym_REGION, sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41364] = 3, + [47293] = 4, + ACTIONS(2715), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47327] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -44592,18 +50476,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41396] = 4, - ACTIONS(2449), 1, - anon_sym_SEMI, + [47359] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44622,17 +50505,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41430] = 3, + [47391] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44651,17 +50534,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41462] = 3, + [47423] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44680,17 +50563,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41494] = 3, + [47455] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44709,17 +50592,47 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41526] = 3, + [47487] = 4, + ACTIONS(2718), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2233), 4, + ACTIONS(2045), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47521] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2235), 18, + ACTIONS(2108), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -44738,17 +50651,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41558] = 3, + [47553] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(1877), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44767,46 +50680,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41590] = 3, + [47585] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2271), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41622] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1881), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44825,12 +50709,418 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41654] = 3, + [47617] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47649] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47681] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47713] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2090), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2092), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47745] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + anon_sym_END_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47777] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47809] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47841] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47873] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47905] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47937] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [47969] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48001] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48033] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_END_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48065] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -44854,17 +51144,46 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41686] = 3, + [48097] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(1839), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1842), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48129] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44883,18 +51202,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41718] = 4, - ACTIONS(2452), 1, - anon_sym_SEMI, + [48161] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, + ACTIONS(1863), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1866), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44913,17 +51231,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41752] = 3, + [48193] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2053), 4, + ACTIONS(1869), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2055), 18, + ACTIONS(1872), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44942,17 +51260,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41784] = 3, + [48225] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2057), 4, + ACTIONS(1883), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2059), 18, + ACTIONS(1886), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -44971,17 +51289,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41816] = 3, + [48257] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2065), 4, + ACTIONS(1989), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2067), 18, + ACTIONS(1991), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -45000,17 +51318,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41848] = 3, + [48289] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2157), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2159), 18, + ACTIONS(1776), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -45029,17 +51347,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41880] = 3, + [48321] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 4, + ACTIONS(1770), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(1772), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -45058,18 +51376,46 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41912] = 4, - ACTIONS(2455), 1, - anon_sym_SEMI, + [48353] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2167), 3, + ACTIONS(1853), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2169), 18, + ACTIONS(1856), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48385] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -45088,858 +51434,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [41946] = 3, + [48417] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2341), 4, + ACTIONS(1905), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [41978] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42010] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42042] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42074] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42106] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42138] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42170] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42202] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42234] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42266] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42298] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42330] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42362] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42394] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42426] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42458] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42490] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42522] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42554] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2176), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2174), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42586] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2361), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2364), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42618] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42650] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2069), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2072), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42682] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2188), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2186), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42714] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42746] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42778] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42810] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_END_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42842] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [42874] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, + ACTIONS(1907), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -45958,7 +51463,123 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [42906] = 3, + [48449] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48481] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48513] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48545] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48577] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -45987,17 +51608,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [42938] = 3, + [48609] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2223), 4, + ACTIONS(2196), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2226), 18, + ACTIONS(2198), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46016,12 +51637,798 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [42970] = 3, + [48641] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2036), 4, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48673] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48705] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48737] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48769] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48801] = 4, + ACTIONS(2721), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48835] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48867] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48899] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48931] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2066), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2068), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48963] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [48995] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49027] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49059] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49091] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49123] = 4, + ACTIONS(2724), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49157] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2123), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49189] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2129), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49221] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2133), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2135), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49253] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1778), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1780), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49285] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49317] = 4, + ACTIONS(2727), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2045), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49351] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1774), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1776), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49383] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1875), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1877), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49415] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1879), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1881), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49447] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1923), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1925), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49479] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1981), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1983), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49511] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2037), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -46045,17 +52452,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43002] = 3, + [49543] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2190), 4, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2193), 18, + ACTIONS(2092), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46074,220 +52481,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43034] = 3, + [49575] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 4, + ACTIONS(2066), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43066] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43098] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43130] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43162] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43194] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43226] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43258] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2068), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46306,7 +52510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43290] = 3, + [49607] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -46335,17 +52539,104 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43322] = 3, + [49639] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(2078), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(2080), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49671] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49703] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49735] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46364,17 +52655,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43354] = 3, + [49767] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(1829), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 18, + ACTIONS(1832), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46393,17 +52684,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43386] = 3, + [49799] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(1839), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 18, + ACTIONS(1842), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46422,17 +52713,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43418] = 3, + [49831] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(1853), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(1856), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46451,7 +52742,850 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43450] = 3, + [49863] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2293), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49895] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2078), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2080), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49927] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, + anon_sym_END_DATA_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49959] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [49991] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50023] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50055] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50087] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50119] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50151] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50183] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1829), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1832), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50215] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2161), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2164), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50247] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50279] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50311] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50343] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50375] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50407] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50439] = 4, + ACTIONS(2730), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50473] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50505] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50537] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50569] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1839), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50601] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50633] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50665] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50697] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50729] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50761] = 4, + ACTIONS(2733), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [50795] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -46480,18 +53614,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43482] = 4, - ACTIONS(2458), 1, - anon_sym_SEMI, + [50827] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46510,17 +53643,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43516] = 3, + [50859] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46539,17 +53672,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43548] = 3, + [50891] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46568,17 +53701,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43580] = 3, + [50923] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46597,46 +53730,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43612] = 3, + [50955] = 4, + ACTIONS(2736), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43644] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(2047), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46655,17 +53760,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43676] = 3, + [50989] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(1776), 18, anon_sym_END_ORGANIZATION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46684,17 +53789,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43708] = 3, + [51021] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1877), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46713,17 +53818,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43740] = 3, + [51053] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2030), 18, + ACTIONS(1881), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46742,17 +53847,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43772] = 3, + [51085] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(1923), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1925), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46771,18 +53876,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43804] = 4, - ACTIONS(2461), 1, - anon_sym_SEMI, + [51117] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, + ACTIONS(1981), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1983), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -46801,593 +53905,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [43838] = 3, + [51149] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43870] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43902] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43934] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43966] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [43998] = 4, - ACTIONS(2464), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44032] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44064] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44096] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44128] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44160] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44192] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44224] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44256] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44288] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2279), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2281), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44320] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2125), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2127), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44352] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2349), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44384] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44416] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44448] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44480] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, + ACTIONS(2037), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -47411,17 +53934,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [44512] = 3, + [51181] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2190), 4, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2193), 18, + ACTIONS(2092), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47440,336 +53963,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [44544] = 3, + [51213] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2349), 4, + ACTIONS(2066), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2351), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44576] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44608] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_END_ORGANIZATION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44640] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44672] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44704] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44736] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44768] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44800] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44832] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2039), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44864] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2190), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2193), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [44896] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, + ACTIONS(2068), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47788,7 +53992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [44928] = 3, + [51245] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -47817,17 +54021,104 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [44960] = 3, + [51277] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2176), 4, + ACTIONS(2078), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2174), 18, + ACTIONS(2080), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51309] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2106), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2108), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51341] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1772), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51373] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2060), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2063), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47846,17 +54137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [44992] = 3, + [51405] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2361), 4, + ACTIONS(1829), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2364), 18, + ACTIONS(1832), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47875,17 +54166,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45024] = 3, + [51437] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2022), 4, + ACTIONS(1839), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2025), 18, + ACTIONS(1842), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47904,17 +54195,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45056] = 3, + [51469] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2069), 4, + ACTIONS(1853), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2072), 18, + ACTIONS(1856), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47933,7 +54224,821 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45088] = 3, + [51501] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1853), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1856), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51533] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, + anon_sym_END_ORGANIZATION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51565] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51597] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51629] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51661] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51693] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1907), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51725] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1913), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1916), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51757] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1950), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1953), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51789] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2017), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2020), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51821] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2161), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2164), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51853] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2196), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2198), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51885] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2226), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2228), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51917] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1863), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1866), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51949] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1869), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1872), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [51981] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1883), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1886), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52013] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1901), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1903), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52045] = 4, + ACTIONS(2739), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1935), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1937), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52079] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1946), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1948), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52111] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1962), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52143] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1573), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1575), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52175] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2027), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2030), 18, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_UNTIL, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52207] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1977), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1979), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52239] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1989), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 18, + anon_sym_END_FUNCTION_BLOCK, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52271] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1997), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52303] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2086), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52335] = 3, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52367] = 4, + ACTIONS(2742), 1, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2102), 3, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(2104), 18, + anon_sym_END_FUNCTION, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + anon_sym_IF, + anon_sym_CASE, + anon_sym_FOR, + anon_sym_WHILE, + anon_sym_REPEAT, + anon_sym_REGION, + sym_identifier, + anon_sym_EXIT, + anon_sym_CONTINUE, + [52401] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, @@ -47962,18 +55067,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45120] = 4, - ACTIONS(2467), 1, - anon_sym_SEMI, + [52433] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2216), 3, + ACTIONS(2129), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2218), 18, + ACTIONS(2131), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -47992,17 +55096,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45154] = 3, + [52465] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2237), 4, + ACTIONS(2133), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2239), 18, + ACTIONS(2135), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48021,17 +55125,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45186] = 3, + [52497] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2251), 4, + ACTIONS(1778), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 18, + ACTIONS(1780), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48050,17 +55154,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45218] = 3, + [52529] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1420), 4, + ACTIONS(2045), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(1422), 18, + ACTIONS(2047), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48079,17 +55183,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45250] = 3, + [52561] = 4, + ACTIONS(2745), 1, + anon_sym_SEMI, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2267), 4, - anon_sym_SEMI, + ACTIONS(2045), 3, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2269), 18, + ACTIONS(2047), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48108,17 +55213,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45282] = 3, + [52595] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2188), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2186), 18, + ACTIONS(1776), 18, anon_sym_END_FUNCTION_BLOCK, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48137,17 +55242,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45314] = 3, + [52627] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2275), 4, + ACTIONS(1875), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2277), 18, + ACTIONS(1877), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48166,17 +55271,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45346] = 3, + [52659] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2028), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2030), 18, + ACTIONS(1881), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48195,17 +55300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45378] = 3, + [52691] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 4, + ACTIONS(1923), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1925), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48224,18 +55329,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45410] = 4, - ACTIONS(2470), 1, - anon_sym_SEMI, + [52723] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2032), 3, + ACTIONS(1981), 4, + anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2034), 18, + ACTIONS(1983), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48254,593 +55358,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [45444] = 3, + [52755] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2053), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45476] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2057), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45508] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2065), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45540] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2157), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2159), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45572] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45604] = 4, - ACTIONS(2473), 1, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2167), 3, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2169), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45638] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2180), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45670] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2229), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2231), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45702] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2233), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45734] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2271), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2273), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45766] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2341), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2343), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45798] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2042), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2044), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45830] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45862] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2299), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45894] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45926] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45958] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [45990] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2149), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2151), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46022] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2161), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2164), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46054] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2223), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2226), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46086] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2036), 4, + ACTIONS(2037), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, @@ -48864,17 +55387,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [46118] = 3, + [52787] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2190), 4, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2193), 18, + ACTIONS(2092), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48893,17 +55416,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [46150] = 3, + [52819] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2367), 4, + ACTIONS(2161), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2370), 18, + ACTIONS(2164), 18, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -48922,46 +55445,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [46182] = 3, + [52851] = 3, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 4, + ACTIONS(1774), 4, anon_sym_SEMI, anon_sym_POUND, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(2301), 18, - anon_sym_END_FUNCTION_BLOCK, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46214] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2303), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2306), 18, + ACTIONS(1776), 18, anon_sym_END_FUNCTION, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, @@ -48980,10069 +55474,5840 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_EXIT, anon_sym_CONTINUE, - [46246] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2309), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2312), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46278] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2318), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46310] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2367), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2370), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46342] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2245), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2248), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46374] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2291), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2293), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46406] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2361), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2364), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46438] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2176), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2174), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46470] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2361), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2364), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46502] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46534] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2069), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2072), 18, - anon_sym_END_FUNCTION, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46566] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2022), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2025), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_UNTIL, - anon_sym_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46598] = 3, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2373), 4, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(2375), 18, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - anon_sym_IF, - anon_sym_CASE, - anon_sym_FOR, - anon_sym_WHILE, - anon_sym_REPEAT, - anon_sym_REGION, - anon_sym_END_REGION, - sym_identifier, - anon_sym_EXIT, - anon_sym_CONTINUE, - [46630] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1097), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46687] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1082), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46744] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1067), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46801] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(309), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46858] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1134), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46915] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(337), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [46972] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1135), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47029] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(338), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47086] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1031), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47143] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1032), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47200] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1033), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47257] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1035), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47314] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1036), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47371] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1037), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47428] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1030), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47485] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1040), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47542] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1041), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47599] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1043), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47656] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1045), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47713] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1047), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47770] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1050), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47827] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1052), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47884] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1054), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47941] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1055), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [47998] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1056), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48055] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1057), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48112] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1060), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48169] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1061), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48226] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1062), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48283] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1063), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48340] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1064), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48397] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1065), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48454] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1070), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48511] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1071), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48568] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1073), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48625] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1074), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48682] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1076), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48739] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1078), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48796] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1079), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48853] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1081), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48910] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1083), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [48967] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1084), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49024] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1085), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49081] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1086), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49138] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(380), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49195] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1118), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49252] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1023), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49309] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1087), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49366] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1088), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49423] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1089), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49480] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1090), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49537] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(320), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49594] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1014), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49651] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1150), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49708] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1092), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49765] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1093), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49822] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1094), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49879] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1136), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49936] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1020), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [49993] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1096), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50050] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1139), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50107] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1099), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50164] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1029), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50221] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1028), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50278] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1100), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50335] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1101), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50392] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1102), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50449] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1103), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50506] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1072), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50563] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1132), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50620] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1016), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50677] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1105), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50734] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1106), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50791] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1107), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50848] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1108), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50905] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1127), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [50962] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1039), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51019] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1022), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51076] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1109), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51133] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1110), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51190] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1111), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51247] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1112), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51304] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(370), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51361] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1019), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51418] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1027), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51475] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1113), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51532] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1114), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51589] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1115), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51646] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1116), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51703] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1012), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51760] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(332), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51817] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1015), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51874] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1119), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51931] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1120), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [51988] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1121), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52045] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1122), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52102] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1011), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52159] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1017), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52216] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1123), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52273] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1124), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52330] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1125), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52387] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1126), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52444] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1051), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52501] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1117), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52558] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1024), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52615] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1128), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52672] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1129), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52729] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1130), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52786] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1131), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52843] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(335), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52900] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1026), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [52957] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1133), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53014] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1140), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53071] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1141), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53128] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1142), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53185] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1143), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53242] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1144), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53299] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1145), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53356] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1146), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53413] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1147), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53470] = 16, - ACTIONS(27), 1, + [52883] = 16, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(2476), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2480), 1, + ACTIONS(2752), 1, anon_sym_NOT, - ACTIONS(2482), 1, + ACTIONS(2754), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(244), 1, + STATE(282), 1, sym_string, - STATE(1148), 1, + STATE(1219), 1, sym_expression, - STATE(1664), 1, + STATE(1856), 1, sym_function_name, - STATE(1673), 1, + STATE(1870), 1, sym_lvalue, - ACTIONS(2478), 2, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2484), 2, + ACTIONS(2756), 2, sym_hex_number, sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - STATE(265), 3, + STATE(348), 3, sym_prefixed_identifier, sym_field_access, sym_array_access, - STATE(310), 3, + STATE(439), 3, sym_function_call, sym_unary_expression, sym_binary_expression, - [53527] = 16, - ACTIONS(27), 1, + [52940] = 16, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(2476), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2480), 1, + ACTIONS(2752), 1, anon_sym_NOT, - ACTIONS(2482), 1, + ACTIONS(2754), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(244), 1, + STATE(282), 1, sym_string, STATE(1149), 1, sym_expression, - STATE(1664), 1, + STATE(1856), 1, sym_function_name, - STATE(1673), 1, + STATE(1870), 1, sym_lvalue, - ACTIONS(2478), 2, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2484), 2, + ACTIONS(2756), 2, sym_hex_number, sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - STATE(265), 3, + STATE(348), 3, sym_prefixed_identifier, sym_field_access, sym_array_access, - STATE(310), 3, + STATE(439), 3, sym_function_call, sym_unary_expression, sym_binary_expression, - [53584] = 16, - ACTIONS(27), 1, + [52997] = 16, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(41), 1, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1091), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53641] = 16, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2480), 1, - anon_sym_NOT, - ACTIONS(2482), 1, - sym_number, - ACTIONS(2486), 1, - sym_identifier, - STATE(244), 1, - sym_string, - STATE(1098), 1, - sym_expression, - STATE(1664), 1, - sym_function_name, - STATE(1673), 1, - sym_lvalue, - ACTIONS(2478), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2484), 2, - sym_hex_number, - sym_time_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - STATE(265), 3, - sym_prefixed_identifier, - sym_field_access, - sym_array_access, - STATE(310), 3, - sym_function_call, - sym_unary_expression, - sym_binary_expression, - [53698] = 15, - ACTIONS(2488), 1, - anon_sym_TITLE, - ACTIONS(2490), 1, - anon_sym_VERSION, - ACTIONS(2492), 1, - anon_sym_COLON, - ACTIONS(2494), 1, - anon_sym_BEGIN, - ACTIONS(2496), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2510), 1, - sym_block_comment, - STATE(1021), 1, - sym_attribute_list, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1069), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [53752] = 14, - ACTIONS(2496), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2512), 1, - anon_sym_TITLE, - ACTIONS(2514), 1, - anon_sym_VERSION, - ACTIONS(2516), 1, - anon_sym_BEGIN, - ACTIONS(2518), 1, - sym_block_comment, - STATE(1025), 1, - sym_attribute_list, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1104), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [53803] = 13, - ACTIONS(2496), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2520), 1, - anon_sym_VERSION, - ACTIONS(2522), 1, - anon_sym_BEGIN, - ACTIONS(2524), 1, - sym_block_comment, - STATE(1013), 1, - sym_attribute_list, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1137), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [53851] = 13, - ACTIONS(2496), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2526), 1, - anon_sym_VERSION, - ACTIONS(2528), 1, - anon_sym_BEGIN, - ACTIONS(2530), 1, - sym_block_comment, - STATE(1018), 1, - sym_attribute_list, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1049), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [53899] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2202), 1, - anon_sym_LT_GT, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2532), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - [53944] = 13, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2202), 1, - anon_sym_LT_GT, - ACTIONS(2532), 1, - anon_sym_EQ_GT, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2536), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [53991] = 11, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2539), 1, - anon_sym_VERSION, - ACTIONS(2541), 1, - anon_sym_BEGIN, - ACTIONS(2543), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1034), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [54033] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2545), 1, - anon_sym_BY, - ACTIONS(2547), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54077] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2549), 1, - anon_sym_BY, - ACTIONS(2551), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54121] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2553), 1, - anon_sym_BY, - ACTIONS(2555), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54165] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2557), 1, - anon_sym_BY, - ACTIONS(2559), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54209] = 11, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2561), 1, - anon_sym_VERSION, - ACTIONS(2563), 1, - anon_sym_BEGIN, - ACTIONS(2565), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1058), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [54251] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(2567), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54293] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2569), 1, - anon_sym_BY, - ACTIONS(2571), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54337] = 11, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2573), 1, - anon_sym_VERSION, - ACTIONS(2575), 1, - anon_sym_BEGIN, - ACTIONS(2577), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1046), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [54379] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2579), 1, - anon_sym_BY, - ACTIONS(2581), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54423] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2583), 1, - anon_sym_BY, - ACTIONS(2585), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54467] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2587), 1, - anon_sym_BY, - ACTIONS(2589), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54511] = 11, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2520), 1, - anon_sym_VERSION, - ACTIONS(2522), 1, - anon_sym_BEGIN, - ACTIONS(2524), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1137), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [54553] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2591), 1, - anon_sym_BY, - ACTIONS(2593), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54597] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2595), 1, - anon_sym_BY, - ACTIONS(2597), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54641] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2599), 1, - anon_sym_BY, - ACTIONS(2601), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54685] = 12, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2603), 1, - anon_sym_BY, - ACTIONS(2605), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54729] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2607), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54770] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2609), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54811] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2611), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54852] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2613), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54893] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2528), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [54932] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2617), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [54973] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2619), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55014] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2621), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55055] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2528), 1, - anon_sym_BEGIN, - ACTIONS(2530), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1049), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55094] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2623), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55135] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2625), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55176] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2627), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55217] = 9, - ACTIONS(2629), 1, - anon_sym_TITLE, - ACTIONS(2631), 1, - anon_sym_VERSION, - ACTIONS(2633), 1, - anon_sym_BEGIN, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2639), 1, - anon_sym_VAR, - STATE(1158), 1, - sym_attribute_list, - STATE(1164), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [55254] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2641), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55295] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2563), 1, - anon_sym_BEGIN, - ACTIONS(2565), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1058), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55334] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2643), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55375] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2516), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55414] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2645), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55455] = 10, - ACTIONS(2647), 1, - anon_sym_BEGIN, - ACTIONS(2652), 1, - anon_sym_VAR, - ACTIONS(2655), 1, - anon_sym_VAR_TEMP, - ACTIONS(2658), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2661), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2664), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2667), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2649), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55494] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2563), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55533] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2670), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55574] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2672), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55615] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2674), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55656] = 9, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2676), 1, - anon_sym_TITLE, - ACTIONS(2678), 1, - anon_sym_VERSION, - ACTIONS(2680), 1, - anon_sym_BEGIN, - STATE(1159), 1, - sym_attribute_list, - STATE(1171), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [55693] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2682), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55734] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2684), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55775] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2686), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55816] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2688), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55857] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(2690), 1, - anon_sym_BEGIN, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55896] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2690), 1, - anon_sym_BEGIN, - ACTIONS(2692), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1066), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [55935] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2694), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [55976] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2696), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56017] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2698), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56058] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2700), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56099] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2702), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56140] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2704), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56181] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(2706), 1, - anon_sym_BEGIN, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56220] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2708), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56261] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2706), 1, - anon_sym_BEGIN, - ACTIONS(2710), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1075), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56300] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2575), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56339] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2712), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56380] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2714), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56421] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2716), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56462] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2718), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56503] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2720), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56544] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(2722), 1, - anon_sym_BEGIN, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56583] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2724), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56624] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2722), 1, - anon_sym_BEGIN, - ACTIONS(2726), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1080), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56663] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2728), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56704] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2730), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56745] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(2732), 1, - anon_sym_BEGIN, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [56784] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2734), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56825] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2736), 1, - anon_sym_RPAREN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56866] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2738), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56907] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2740), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56948] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2742), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [56989] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2744), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57030] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2746), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57071] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, ACTIONS(2748), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57112] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2750), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57153] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, + anon_sym_LPAREN, ACTIONS(2752), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57194] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, + anon_sym_NOT, ACTIONS(2754), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57235] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2756), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57276] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, + sym_number, ACTIONS(2758), 1, - anon_sym_OF, - ACTIONS(2101), 2, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(427), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57317] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2760), 1, - anon_sym_DO, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53054] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1150), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57358] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2522), 1, - anon_sym_BEGIN, - ACTIONS(2524), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1137), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [57397] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2762), 1, - anon_sym_DO, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53111] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1151), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57438] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2764), 1, - anon_sym_THEN, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53168] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1152), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57479] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2766), 1, - anon_sym_OF, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53225] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(438), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57520] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2768), 1, - anon_sym_DO, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53282] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1153), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57561] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2770), 1, - anon_sym_DO, - ACTIONS(2101), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53339] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1154), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [57602] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2772), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57643] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2774), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57684] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2776), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57725] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2522), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [57764] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2778), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57805] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2780), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57846] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2782), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57887] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2784), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57928] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2786), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [57969] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2788), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58010] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2790), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58051] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2792), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58092] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2794), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58133] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2796), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58174] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2798), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58215] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2800), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58256] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2802), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58297] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2804), 1, - anon_sym_END_REPEAT, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58338] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2806), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58379] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2808), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58420] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2810), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58461] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2812), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58502] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2814), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58543] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2816), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58584] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2818), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58625] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2820), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58666] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2822), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58707] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2824), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58748] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2826), 1, - anon_sym_THEN, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58789] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2828), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58830] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2830), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58871] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2832), 1, - anon_sym_OF, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58912] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2834), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58953] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2836), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [58994] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2838), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59035] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2840), 1, - anon_sym_RBRACK, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59076] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2541), 1, - anon_sym_BEGIN, - ACTIONS(2615), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1048), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [59115] = 10, - ACTIONS(2500), 1, - anon_sym_VAR, - ACTIONS(2502), 1, - anon_sym_VAR_TEMP, - ACTIONS(2504), 1, - anon_sym_VAR_CONSTANT, - ACTIONS(2506), 1, - anon_sym_VAR_RETAIN, - ACTIONS(2508), 1, - anon_sym_VAR_NON_RETAIN, - ACTIONS(2541), 1, - anon_sym_BEGIN, - ACTIONS(2543), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2498), 3, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - STATE(1034), 6, - sym_var_declaration, - sym_var_temp_declaration, - sym_var_constant_declaration, - sym_var_retain_declaration, - sym_var_non_retain_declaration, - aux_sym_function_repeat1, - [59154] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2842), 1, - anon_sym_SEMI, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59195] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2844), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59236] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2846), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59277] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2848), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59318] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2850), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59359] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2852), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59400] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2854), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59441] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2856), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59482] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2858), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59523] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2860), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59564] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2862), 1, - anon_sym_TO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59605] = 11, - ACTIONS(2099), 1, - anon_sym_SLASH, - ACTIONS(2198), 1, - anon_sym_XOR, - ACTIONS(2200), 1, - anon_sym_AND, - ACTIONS(2534), 1, - anon_sym_OR, - ACTIONS(2864), 1, - anon_sym_DO, - ACTIONS(2101), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2107), 2, - anon_sym_STAR, - anon_sym_MOD, - ACTIONS(2202), 2, - anon_sym_EQ, - anon_sym_LT_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [59646] = 8, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2866), 1, - anon_sym_VERSION, - ACTIONS(2868), 1, - anon_sym_BEGIN, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53396] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, STATE(1156), 1, - sym_attribute_list, - STATE(1177), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59680] = 8, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2870), 1, - anon_sym_VERSION, - ACTIONS(2872), 1, - anon_sym_BEGIN, - STATE(1161), 1, - sym_attribute_list, - STATE(1182), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53453] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1157), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59714] = 3, - ACTIONS(1414), 1, - anon_sym_VAR, - ACTIONS(3), 2, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53510] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1158), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - ACTIONS(1412), 13, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53567] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1162), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53624] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1163), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53681] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1164), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53738] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1166), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53795] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1167), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53852] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1168), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53909] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(434), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [53966] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1169), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54023] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1170), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54080] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1171), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54137] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1173), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54194] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1174), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54251] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1175), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54308] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1176), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54365] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1177), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54422] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1178), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54479] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1179), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54536] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1180), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54593] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1181), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54650] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1182), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54707] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1183), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54764] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1184), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54821] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1185), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54878] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1186), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54935] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1188), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [54992] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1189), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55049] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1190), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55106] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1191), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55163] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1193), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55220] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1194), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55277] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1195), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55334] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1197), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55391] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1198), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55448] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1199), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55505] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1134), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55562] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1229), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55619] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1136), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55676] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1204), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55733] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1205), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55790] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1206), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55847] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1207), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55904] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1203), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [55961] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1160), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56018] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1137), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56075] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1209), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56132] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1210), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56189] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1211), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56246] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1148), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56303] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1202), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56360] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1213), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56417] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1139), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56474] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1216), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56531] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1217), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56588] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1218), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56645] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(436), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56702] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1187), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56759] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(431), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56816] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1129), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56873] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1220), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56930] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1221), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [56987] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1222), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57044] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1279), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57101] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1140), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57158] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1225), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57215] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1226), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57272] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1227), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57329] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1228), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57386] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1260), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57443] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1141), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57500] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1230), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57557] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1231), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57614] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1232), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57671] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1233), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57728] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1138), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57785] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1142), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57842] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1235), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57899] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1236), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [57956] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1237), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58013] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1238), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58070] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1172), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58127] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(428), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58184] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1143), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58241] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1240), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58298] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1241), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58355] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1242), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58412] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1243), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58469] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(433), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58526] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1201), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58583] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1144), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58640] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1244), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58697] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1245), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58754] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1246), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58811] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1247), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58868] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1200), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58925] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1263), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [58982] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1145), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59039] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1249), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59096] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1250), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59153] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1251), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59210] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1252), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59267] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1127), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59324] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(437), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59381] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1146), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59438] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1253), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59495] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1254), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59552] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1255), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59609] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1256), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59666] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1165), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59723] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1159), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59780] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1147), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59837] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1257), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59894] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1268), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [59951] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1269), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60008] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1270), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60065] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1271), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60122] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1272), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60179] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1273), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60236] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1274), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60293] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1275), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60350] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1276), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60407] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1277), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60464] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1278), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60521] = 16, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2752), 1, + anon_sym_NOT, + ACTIONS(2754), 1, + sym_number, + ACTIONS(2758), 1, + sym_identifier, + STATE(282), 1, + sym_string, + STATE(1128), 1, + sym_expression, + STATE(1856), 1, + sym_function_name, + STATE(1870), 1, + sym_lvalue, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2756), 2, + sym_hex_number, + sym_time_value, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + STATE(348), 3, + sym_prefixed_identifier, + sym_field_access, + sym_array_access, + STATE(439), 3, + sym_function_call, + sym_unary_expression, + sym_binary_expression, + [60578] = 15, + ACTIONS(2760), 1, anon_sym_TITLE, + ACTIONS(2762), 1, anon_sym_VERSION, + ACTIONS(2764), 1, anon_sym_COLON, + ACTIONS(2766), 1, anon_sym_BEGIN, + ACTIONS(2768), 1, anon_sym_LBRACE, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59737] = 4, - ACTIONS(2876), 1, + ACTIONS(2772), 1, anon_sym_VAR, - ACTIONS(2878), 1, - anon_sym_LBRACK, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2782), 1, + sym_block_comment, + STATE(1132), 1, + sym_attribute_list, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2874), 12, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_BEGIN, - anon_sym_LBRACE, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59762] = 3, - ACTIONS(1418), 1, + STATE(1234), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [60632] = 14, + ACTIONS(2768), 1, + anon_sym_LBRACE, + ACTIONS(2772), 1, anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2784), 1, + anon_sym_TITLE, + ACTIONS(2786), 1, + anon_sym_VERSION, + ACTIONS(2788), 1, + anon_sym_BEGIN, + ACTIONS(2790), 1, + sym_block_comment, + STATE(1133), 1, + sym_attribute_list, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(1416), 13, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_COLON, - anon_sym_BEGIN, - anon_sym_LBRACE, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59785] = 6, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2880), 1, - anon_sym_VERSION, - ACTIONS(2882), 1, - anon_sym_BEGIN, - STATE(1165), 2, + STATE(1161), 6, sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59813] = 3, - ACTIONS(2886), 1, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [60683] = 13, + ACTIONS(2768), 1, + anon_sym_LBRACE, + ACTIONS(2772), 1, anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2792), 1, + anon_sym_VERSION, + ACTIONS(2794), 1, + anon_sym_BEGIN, + ACTIONS(2796), 1, + sym_block_comment, + STATE(1135), 1, + sym_attribute_list, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2884), 12, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_BEGIN, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1192), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [60731] = 13, + ACTIONS(2768), 1, anon_sym_LBRACE, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59835] = 6, - ACTIONS(2639), 1, + ACTIONS(2772), 1, anon_sym_VAR, - ACTIONS(2888), 1, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2798), 1, anon_sym_VERSION, - ACTIONS(2890), 1, + ACTIONS(2800), 1, anon_sym_BEGIN, - STATE(1180), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, + ACTIONS(2802), 1, sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59863] = 6, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2892), 1, - anon_sym_VERSION, - ACTIONS(2894), 1, - anon_sym_BEGIN, - STATE(1169), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59891] = 3, - ACTIONS(2876), 1, - anon_sym_VAR, + STATE(1130), 1, + sym_attribute_list, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2874), 12, - anon_sym_TITLE, - anon_sym_VERSION, - anon_sym_BEGIN, - anon_sym_LBRACE, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59913] = 6, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2896), 1, - anon_sym_VERSION, - ACTIONS(2898), 1, - anon_sym_BEGIN, - STATE(1186), 2, + STATE(1262), 6, sym_var_declaration, - aux_sym_organization_block_repeat1, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [60779] = 12, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2618), 1, + anon_sym_LT_GT, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [59941] = 3, - ACTIONS(2902), 1, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + [60824] = 13, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2618), 1, + anon_sym_LT_GT, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2804), 1, + anon_sym_EQ_GT, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(2808), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [60871] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2811), 1, + anon_sym_BY, + ACTIONS(2813), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [60915] = 11, + ACTIONS(2772), 1, anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2815), 1, + anon_sym_VERSION, + ACTIONS(2817), 1, + anon_sym_BEGIN, + ACTIONS(2819), 1, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2900), 12, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1266), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [60957] = 10, + ACTIONS(2821), 1, anon_sym_TITLE, + ACTIONS(2823), 1, anon_sym_VERSION, + ACTIONS(2827), 1, anon_sym_BEGIN, + ACTIONS(2829), 1, anon_sym_LBRACE, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [59963] = 5, - ACTIONS(2639), 1, + ACTIONS(2833), 1, anon_sym_VAR, - ACTIONS(2904), 1, - anon_sym_BEGIN, - STATE(1168), 2, + STATE(1288), 1, + sym_attribute_list, + STATE(2086), 1, sym_var_declaration, - aux_sym_organization_block_repeat1, + ACTIONS(2825), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, + ACTIONS(2831), 7, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -59050,1332 +61315,2538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_CONSTANT, anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, - [59988] = 5, - ACTIONS(2639), 1, + [60997] = 11, + ACTIONS(2772), 1, anon_sym_VAR, - ACTIONS(2890), 1, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2835), 1, + anon_sym_VERSION, + ACTIONS(2837), 1, anon_sym_BEGIN, - STATE(1168), 2, + ACTIONS(2839), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1264), 6, sym_var_declaration, - aux_sym_organization_block_repeat1, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [61039] = 11, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2792), 1, + anon_sym_VERSION, + ACTIONS(2794), 1, + anon_sym_BEGIN, + ACTIONS(2796), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1192), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [61081] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(2841), 2, + anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, + [61123] = 11, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2843), 1, + anon_sym_VERSION, + ACTIONS(2845), 1, + anon_sym_BEGIN, + ACTIONS(2847), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60013] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2906), 1, - anon_sym_BEGIN, - STATE(1168), 2, + STATE(1258), 6, sym_var_declaration, - aux_sym_organization_block_repeat1, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [61165] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2849), 1, + anon_sym_BY, + ACTIONS(2851), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60038] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2872), 1, - anon_sym_BEGIN, - STATE(1182), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, + [61209] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2853), 1, + anon_sym_BY, + ACTIONS(2855), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60063] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2904), 1, - anon_sym_BEGIN, - STATE(1179), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, + [61253] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2857), 1, + anon_sym_BY, + ACTIONS(2859), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2637), 7, + [61297] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2861), 1, + anon_sym_BY, + ACTIONS(2863), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61341] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2865), 1, + anon_sym_BY, + ACTIONS(2867), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61385] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2869), 1, + anon_sym_BY, + ACTIONS(2871), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61429] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2873), 1, + anon_sym_BY, + ACTIONS(2875), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61473] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2877), 1, + anon_sym_BY, + ACTIONS(2879), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61517] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2881), 1, + anon_sym_BY, + ACTIONS(2883), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61561] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2885), 1, + anon_sym_BY, + ACTIONS(2887), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61605] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2889), 1, + anon_sym_BY, + ACTIONS(2891), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61649] = 12, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2893), 1, + anon_sym_BY, + ACTIONS(2895), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61693] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2897), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61734] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2899), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61775] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2901), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61816] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2903), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61857] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2905), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61898] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2907), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61939] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2909), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [61980] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2794), 1, + anon_sym_BEGIN, + ACTIONS(2796), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60088] = 5, - ACTIONS(2908), 1, - anon_sym_BEGIN, + STATE(1192), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [62019] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2911), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62060] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(2913), 1, - anon_sym_VAR, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2910), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60113] = 5, - ACTIONS(2639), 1, + [62101] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2915), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62142] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2917), 1, + anon_sym_RPAREN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62183] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2919), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62224] = 10, + ACTIONS(2772), 1, anon_sym_VAR, - ACTIONS(2916), 1, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2794), 1, anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, + ACTIONS(2921), 1, sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60138] = 3, - ACTIONS(2920), 1, - anon_sym_VAR, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2918), 10, - anon_sym_VERSION, - anon_sym_COLON, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60159] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2894), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60184] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2922), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60209] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2868), 1, - anon_sym_BEGIN, - STATE(1177), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60234] = 3, - ACTIONS(2926), 1, - anon_sym_VAR, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2924), 10, - anon_sym_VERSION, - anon_sym_COLON, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60255] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2898), 1, - anon_sym_BEGIN, - STATE(1186), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60280] = 3, - ACTIONS(2930), 1, - anon_sym_VAR, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2928), 10, - anon_sym_VERSION, - anon_sym_COLON, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60301] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2882), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60326] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2882), 1, - anon_sym_BEGIN, - STATE(1165), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60351] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2932), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60376] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2934), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60401] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2936), 1, - anon_sym_BEGIN, - STATE(1184), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60426] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2898), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60451] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2938), 1, - anon_sym_BEGIN, - STATE(1163), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60476] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2940), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60501] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2940), 1, - anon_sym_BEGIN, - STATE(1172), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60526] = 5, - ACTIONS(2639), 1, - anon_sym_VAR, - ACTIONS(2942), 1, - anon_sym_BEGIN, - STATE(1168), 2, - sym_var_declaration, - aux_sym_organization_block_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(2637), 7, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [60551] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2946), 1, - anon_sym_END_CASE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - STATE(1845), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60583] = 3, - ACTIONS(2926), 1, - anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2924), 10, - anon_sym_VERSION, - anon_sym_BEGIN, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [62263] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2923), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, - [60603] = 3, - ACTIONS(2930), 1, + sym_c_style_comment, + [62304] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2925), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62345] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2927), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62386] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2929), 1, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62427] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2931), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62468] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2933), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62509] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2935), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62550] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2937), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62591] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2939), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62632] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2941), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62673] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2943), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62714] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2945), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62755] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2947), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62796] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2949), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62837] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2951), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62878] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2953), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62919] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2955), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [62960] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2957), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63001] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2959), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63042] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2961), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63083] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2963), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63124] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2965), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63165] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2967), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63206] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2969), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63247] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2971), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63288] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2973), 1, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63329] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2975), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63370] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2977), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63411] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2979), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63452] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2981), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [63493] = 10, + ACTIONS(2772), 1, anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2845), 1, + anon_sym_BEGIN, + ACTIONS(2921), 1, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2928), 10, - anon_sym_VERSION, - anon_sym_BEGIN, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [60623] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_END_CASE, - STATE(1787), 1, - sym_else_clause, - STATE(1196), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [63532] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2983), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [60655] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2954), 1, - anon_sym_END_CASE, - STATE(1759), 1, - sym_else_clause, - STATE(1195), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + [63573] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [60687] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2956), 1, - anon_sym_END_CASE, - STATE(1704), 1, - sym_else_clause, - STATE(1213), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + [63614] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2987), 1, + anon_sym_END_REPEAT, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [60719] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2958), 1, - anon_sym_END_CASE, - STATE(1729), 1, - sym_else_clause, - STATE(1197), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60751] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2960), 1, - anon_sym_END_CASE, - STATE(1765), 1, - sym_else_clause, - STATE(1202), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60783] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2962), 1, - anon_sym_END_CASE, - STATE(1777), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60815] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2964), 1, - anon_sym_END_CASE, - STATE(1717), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60847] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2966), 1, - anon_sym_END_CASE, - STATE(1774), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60879] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2968), 1, - anon_sym_END_CASE, - STATE(1880), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60911] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_END_CASE, - STATE(1745), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60943] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2972), 1, - anon_sym_END_CASE, - STATE(1775), 1, - sym_else_clause, - STATE(1206), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [60975] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2974), 1, - anon_sym_END_CASE, - STATE(1728), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61007] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2976), 1, - anon_sym_END_CASE, - STATE(1795), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61039] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2978), 1, - anon_sym_END_CASE, - STATE(1844), 1, - sym_else_clause, - STATE(1205), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61071] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2980), 1, - anon_sym_END_CASE, - STATE(1737), 1, - sym_else_clause, - STATE(1201), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61103] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2982), 1, - anon_sym_END_CASE, - STATE(1814), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61135] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2984), 1, - anon_sym_END_CASE, - STATE(1783), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61167] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2986), 1, - anon_sym_END_CASE, - STATE(1705), 1, - sym_else_clause, - STATE(1210), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61199] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2988), 1, - anon_sym_END_CASE, - STATE(1766), 1, - sym_else_clause, - STATE(1198), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61231] = 3, - ACTIONS(2920), 1, + [63655] = 10, + ACTIONS(2772), 1, anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2845), 1, + anon_sym_BEGIN, + ACTIONS(2847), 1, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(2918), 10, - anon_sym_VERSION, - anon_sym_BEGIN, + ACTIONS(2770), 3, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61251] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2990), 1, - anon_sym_END_CASE, - STATE(1720), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + STATE(1258), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [63694] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2989), 1, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [61283] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2992), 1, - anon_sym_END_CASE, - STATE(1836), 1, - sym_else_clause, - STATE(1187), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + [63735] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2991), 1, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [61315] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_END_CASE, - STATE(1735), 1, - sym_else_clause, - STATE(1199), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + [63776] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2993), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [61347] = 9, - ACTIONS(27), 1, - anon_sym_POUND, - ACTIONS(2944), 1, - anon_sym_ELSE, - ACTIONS(2948), 1, - sym_number, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2996), 1, - anon_sym_END_CASE, - STATE(1710), 1, - sym_else_clause, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + [63817] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2995), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [61379] = 3, - ACTIONS(2301), 1, - anon_sym_VAR, + [63858] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2997), 1, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2299), 8, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [61398] = 3, - ACTIONS(2306), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2303), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61417] = 3, - ACTIONS(2312), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2309), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61436] = 3, - ACTIONS(2151), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2149), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61455] = 3, - ACTIONS(2318), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2315), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61474] = 3, - ACTIONS(2370), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2367), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61493] = 3, - ACTIONS(2151), 1, - anon_sym_VAR, + [63899] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(2999), 1, + anon_sym_RBRACK, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(2149), 8, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - [61512] = 3, - ACTIONS(2164), 1, - anon_sym_VAR, - ACTIONS(3), 2, + [63940] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3001), 1, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - ACTIONS(2161), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, sym_block_comment, - [61531] = 3, - ACTIONS(2226), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, sym_c_style_comment, - ACTIONS(2223), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61550] = 3, - ACTIONS(2364), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2361), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61569] = 3, - ACTIONS(2025), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2022), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61588] = 3, - ACTIONS(2072), 1, - anon_sym_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(2069), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, - sym_block_comment, - [61607] = 7, - ACTIONS(2998), 1, - anon_sym_POUND, + [63981] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3003), 1, - sym_number, - ACTIONS(3006), 1, - sym_identifier, - ACTIONS(3001), 2, - anon_sym_ELSE, - anon_sym_END_CASE, - STATE(1226), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(1733), 2, - sym_prefixed_identifier, - sym_range, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [61634] = 3, - ACTIONS(2039), 1, - anon_sym_VAR, - ACTIONS(3), 2, + [64022] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3005), 1, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - ACTIONS(2036), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, sym_block_comment, - [61653] = 3, - ACTIONS(2301), 1, - anon_sym_VAR, - ACTIONS(3), 2, + sym_c_style_comment, + [64063] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3007), 1, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - ACTIONS(2299), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, sym_block_comment, - [61672] = 3, - ACTIONS(2193), 1, - anon_sym_VAR, - ACTIONS(3), 2, + sym_c_style_comment, + [64104] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3009), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - ACTIONS(2190), 9, - anon_sym_BEGIN, - anon_sym_VAR_INPUT, - anon_sym_VAR_OUTPUT, - anon_sym_VAR_IN_OUT, - anon_sym_VAR_TEMP, - anon_sym_VAR_CONSTANT, - anon_sym_VAR_RETAIN, - anon_sym_VAR_NON_RETAIN, sym_block_comment, - [61691] = 3, + sym_c_style_comment, + [64145] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2921), 1, + sym_block_comment, ACTIONS(3011), 1, - anon_sym_VAR, + anon_sym_BEGIN, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [64184] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3013), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(3009), 8, + [64225] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3015), 1, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64266] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3017), 1, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64307] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2921), 1, + sym_block_comment, + ACTIONS(3019), 1, anon_sym_BEGIN, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [64346] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3021), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64387] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(3011), 1, + anon_sym_BEGIN, + ACTIONS(3023), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1239), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [64426] = 9, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3025), 1, + anon_sym_TITLE, + ACTIONS(3027), 1, + anon_sym_VERSION, + ACTIONS(3029), 1, + anon_sym_BEGIN, + STATE(1295), 1, + sym_attribute_list, + STATE(1305), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, anon_sym_VAR_INPUT, anon_sym_VAR_OUTPUT, anon_sym_VAR_IN_OUT, @@ -60383,3220 +63854,5169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_VAR_CONSTANT, anon_sym_VAR_RETAIN, anon_sym_VAR_NON_RETAIN, - [61710] = 7, - ACTIONS(1656), 1, + [64463] = 11, + ACTIONS(2614), 1, anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(114), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61736] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(130), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61762] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(200), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61788] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(192), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61814] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(122), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61840] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(183), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61866] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(139), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61892] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(174), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61918] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(164), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61944] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(148), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61970] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(140), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [61996] = 7, - ACTIONS(1656), 1, - anon_sym_SLASH, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - STATE(156), 1, - sym_region_name, - ACTIONS(1658), 2, - anon_sym_DASH, - sym_identifier, - STATE(286), 2, - sym_string, - aux_sym_region_name_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62022] = 6, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - STATE(1652), 1, - sym_string, - STATE(1653), 1, - sym_attribute_value, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(3017), 3, - anon_sym_TRUE, - anon_sym_FALSE, - sym_identifier, - [62045] = 8, - ACTIONS(3019), 1, - anon_sym_CONSTANT, - ACTIONS(3021), 1, - anon_sym_RETAIN, - ACTIONS(3023), 1, - anon_sym_NON_RETAIN, - ACTIONS(3025), 1, - anon_sym_END_VAR, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3029), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1313), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62072] = 8, - ACTIONS(3027), 1, - sym_identifier, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3031), 1, - anon_sym_CONSTANT, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64504] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3033), 1, - anon_sym_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64545] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3035), 1, - anon_sym_NON_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64586] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3037), 1, - anon_sym_END_VAR, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64627] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3039), 1, - sym_block_comment, - ACTIONS(3), 2, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1354), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62099] = 8, - ACTIONS(3027), 1, - sym_identifier, + [64668] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3041), 1, - anon_sym_CONSTANT, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64709] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3043), 1, - anon_sym_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64750] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(3019), 1, + anon_sym_BEGIN, ACTIONS(3045), 1, - anon_sym_NON_RETAIN, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1208), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [64789] = 9, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_VAR, ACTIONS(3047), 1, - anon_sym_END_VAR, + anon_sym_TITLE, ACTIONS(3049), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1486), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62126] = 8, - ACTIONS(3027), 1, - sym_identifier, + anon_sym_VERSION, ACTIONS(3051), 1, - anon_sym_CONSTANT, + anon_sym_BEGIN, + STATE(1293), 1, + sym_attribute_list, + STATE(1313), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [64826] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3053), 1, - anon_sym_RETAIN, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64867] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3055), 1, - anon_sym_NON_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64908] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3057), 1, - anon_sym_END_VAR, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [64949] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3059), 1, - sym_block_comment, - ACTIONS(3), 2, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1361), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62153] = 8, - ACTIONS(3027), 1, - sym_identifier, + [64990] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3061), 1, - anon_sym_CONSTANT, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65031] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3063), 1, - anon_sym_RETAIN, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65072] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3065), 1, - anon_sym_NON_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65113] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3067), 1, - anon_sym_END_VAR, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65154] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3069), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65195] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2837), 1, + anon_sym_BEGIN, + ACTIONS(2921), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1616), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62180] = 8, - ACTIONS(3027), 1, - sym_identifier, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [65234] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3071), 1, - anon_sym_CONSTANT, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65275] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3073), 1, - anon_sym_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65316] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3075), 1, - anon_sym_NON_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65357] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3077), 1, - anon_sym_END_VAR, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65398] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2921), 1, + sym_block_comment, ACTIONS(3079), 1, - sym_block_comment, + anon_sym_BEGIN, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1411), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62207] = 8, - ACTIONS(3027), 1, - sym_identifier, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [65437] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3081), 1, - anon_sym_CONSTANT, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65478] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3083), 1, - anon_sym_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65519] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3085), 1, - anon_sym_NON_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65560] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3087), 1, - anon_sym_END_VAR, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65601] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3089), 1, - sym_block_comment, - ACTIONS(3), 2, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1612), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62234] = 8, - ACTIONS(3027), 1, - sym_identifier, + [65642] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3091), 1, - anon_sym_CONSTANT, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65683] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3093), 1, - anon_sym_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65724] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3095), 1, - anon_sym_NON_RETAIN, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65765] = 9, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_VAR, ACTIONS(3097), 1, - anon_sym_END_VAR, - ACTIONS(3099), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1498), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62261] = 8, - ACTIONS(3027), 1, - sym_identifier, + anon_sym_VERSION, ACTIONS(3101), 1, - anon_sym_CONSTANT, + anon_sym_BEGIN, + STATE(1289), 1, + sym_attribute_list, + STATE(2068), 1, + sym_var_declaration, + ACTIONS(3099), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [65802] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3103), 1, - anon_sym_RETAIN, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65843] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3105), 1, - anon_sym_NON_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65884] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3107), 1, - anon_sym_END_VAR, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [65925] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3109), 1, - sym_block_comment, - ACTIONS(3), 2, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1440), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62288] = 8, - ACTIONS(3027), 1, - sym_identifier, + [65966] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3111), 1, - anon_sym_CONSTANT, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66007] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3113), 1, - anon_sym_RETAIN, + anon_sym_THEN, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66048] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3115), 1, - anon_sym_NON_RETAIN, + anon_sym_OF, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66089] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3117), 1, - anon_sym_END_VAR, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66130] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3119), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66171] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2800), 1, + anon_sym_BEGIN, + ACTIONS(2921), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1469), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62315] = 8, - ACTIONS(3027), 1, - sym_identifier, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66210] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2800), 1, + anon_sym_BEGIN, + ACTIONS(2802), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1262), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66249] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3121), 1, - anon_sym_CONSTANT, + anon_sym_SEMI, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66290] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2817), 1, + anon_sym_BEGIN, + ACTIONS(2819), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1266), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66329] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2817), 1, + anon_sym_BEGIN, + ACTIONS(2921), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66368] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, ACTIONS(3123), 1, - anon_sym_RETAIN, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66409] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2788), 1, + anon_sym_BEGIN, + ACTIONS(2921), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66448] = 10, ACTIONS(3125), 1, - anon_sym_NON_RETAIN, - ACTIONS(3127), 1, - anon_sym_END_VAR, - ACTIONS(3129), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1339), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62342] = 8, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3131), 1, - anon_sym_CONSTANT, + anon_sym_BEGIN, + ACTIONS(3130), 1, + anon_sym_VAR, ACTIONS(3133), 1, - anon_sym_RETAIN, - ACTIONS(3135), 1, - anon_sym_NON_RETAIN, - ACTIONS(3137), 1, - anon_sym_END_VAR, + anon_sym_VAR_TEMP, + ACTIONS(3136), 1, + anon_sym_VAR_CONSTANT, ACTIONS(3139), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1375), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62369] = 6, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3143), 1, - anon_sym_END_VAR, + anon_sym_VAR_RETAIN, + ACTIONS(3142), 1, + anon_sym_VAR_NON_RETAIN, ACTIONS(3145), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1583), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - ACTIONS(3141), 3, - anon_sym_CONSTANT, - anon_sym_RETAIN, + ACTIONS(3127), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66487] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(2921), 1, + sym_block_comment, + ACTIONS(3148), 1, + anon_sym_BEGIN, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1265), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66526] = 10, + ACTIONS(2772), 1, + anon_sym_VAR, + ACTIONS(2774), 1, + anon_sym_VAR_TEMP, + ACTIONS(2776), 1, + anon_sym_VAR_CONSTANT, + ACTIONS(2778), 1, + anon_sym_VAR_RETAIN, + ACTIONS(2780), 1, + anon_sym_VAR_NON_RETAIN, + ACTIONS(3148), 1, + anon_sym_BEGIN, + ACTIONS(3150), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2770), 3, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + STATE(1212), 6, + sym_var_declaration, + sym_var_temp_declaration, + sym_var_constant_declaration, + sym_var_retain_declaration, + sym_var_non_retain_declaration, + aux_sym_function_repeat1, + [66565] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3152), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66606] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3154), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66647] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3156), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66688] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3158), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66729] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3160), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66770] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3162), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66811] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3164), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66852] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3166), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66893] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3168), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66934] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3170), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [66975] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3172), 1, + anon_sym_TO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [67016] = 11, + ACTIONS(2614), 1, + anon_sym_SLASH, + ACTIONS(2626), 1, + anon_sym_XOR, + ACTIONS(2628), 1, + anon_sym_AND, + ACTIONS(2806), 1, + anon_sym_OR, + ACTIONS(3174), 1, + anon_sym_DO, + ACTIONS(2616), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2618), 2, + anon_sym_EQ, + anon_sym_LT_GT, + ACTIONS(2620), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2622), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2624), 2, + anon_sym_STAR, + anon_sym_MOD, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [67057] = 3, + ACTIONS(3178), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3176), 13, + anon_sym_VERSION, + anon_sym_COLON, + anon_sym_STRUCT, anon_sym_NON_RETAIN, - [62392] = 8, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_CONSTANT, - ACTIONS(3149), 1, anon_sym_RETAIN, - ACTIONS(3151), 1, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67081] = 3, + ACTIONS(3182), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3180), 13, + anon_sym_VERSION, + anon_sym_COLON, + anon_sym_STRUCT, anon_sym_NON_RETAIN, - ACTIONS(3153), 1, - anon_sym_END_VAR, - ACTIONS(3155), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1560), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [62419] = 6, - ACTIONS(3157), 1, - anon_sym_END_IF, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - STATE(1718), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62441] = 7, - ACTIONS(3163), 1, - anon_sym_RPAREN, - ACTIONS(3165), 1, - sym_identifier, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1670), 1, - sym_parameter_list, - STATE(1856), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62465] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3167), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1699), 1, - sym_parameter_list, - STATE(1716), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62489] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3169), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1697), 1, - sym_parameter_list, - STATE(1726), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62513] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3171), 1, - anon_sym_END_IF, - STATE(1722), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62535] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3173), 1, - anon_sym_END_IF, - STATE(1809), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62557] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3175), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1688), 1, - sym_parameter_list, - STATE(1762), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62581] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3177), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1692), 1, - sym_parameter_list, - STATE(1825), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62605] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3179), 1, - anon_sym_END_IF, - STATE(1711), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62627] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1679), 1, - sym_parameter_list, - STATE(1756), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62651] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3183), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1687), 1, - sym_parameter_list, - STATE(1824), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62675] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3185), 1, - anon_sym_END_IF, - STATE(1780), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62697] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3187), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1695), 1, - sym_parameter_list, - STATE(1758), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62721] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3189), 1, - anon_sym_END_IF, - STATE(1752), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62743] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3191), 1, - anon_sym_END_IF, - STATE(1851), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62765] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3193), 1, - anon_sym_END_IF, - STATE(1818), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62787] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3195), 1, - anon_sym_END_IF, - STATE(1742), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62809] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3197), 1, - anon_sym_END_IF, - STATE(1839), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62831] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3199), 1, - anon_sym_END_IF, - STATE(1849), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62853] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1675), 1, - sym_parameter_list, - STATE(1786), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62877] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3203), 1, - anon_sym_END_IF, - STATE(1736), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62899] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3205), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1694), 1, - sym_parameter_list, - STATE(1821), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62923] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3207), 1, - anon_sym_END_IF, - STATE(1785), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62945] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3209), 1, - anon_sym_END_IF, - STATE(1734), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62967] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3211), 1, - anon_sym_END_IF, - STATE(1702), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [62989] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3213), 1, - anon_sym_END_IF, - STATE(1778), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63011] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1681), 1, - sym_parameter_list, - STATE(1761), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63035] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3217), 1, - anon_sym_END_IF, - STATE(1749), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63057] = 7, - ACTIONS(3165), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1658), 1, - sym_fb_parameter, - STATE(1674), 1, - sym_parameter_list, - STATE(1724), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63081] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3221), 1, - anon_sym_END_IF, - STATE(1708), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63103] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3223), 1, - anon_sym_END_IF, - STATE(1801), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63125] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3225), 1, - anon_sym_END_IF, - STATE(1739), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63147] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3227), 1, - anon_sym_END_IF, - STATE(1791), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63169] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3229), 1, - anon_sym_END_IF, - STATE(1770), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63191] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3231), 1, - anon_sym_END_IF, - STATE(1713), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63213] = 6, - ACTIONS(3159), 1, - anon_sym_ELSIF, - ACTIONS(3161), 1, - anon_sym_ELSE, - ACTIONS(3233), 1, - anon_sym_END_IF, - STATE(1842), 1, - sym_else_clause, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63235] = 4, - ACTIONS(3237), 1, - anon_sym_ELSIF, - ACTIONS(3235), 2, - anon_sym_END_IF, - anon_sym_ELSE, - STATE(1294), 2, - sym_elsif_clause, - aux_sym_if_statement_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63252] = 4, - ACTIONS(3242), 1, - anon_sym_RBRACE, - STATE(1460), 1, - aux_sym_attribute_list_repeat1, - ACTIONS(3240), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63268] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3244), 1, - anon_sym_END_VAR, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63286] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3248), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63304] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3250), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63322] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3252), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63340] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3254), 1, - anon_sym_END_VAR, - ACTIONS(3256), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1299), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63358] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3258), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63376] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3260), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63394] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3262), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63412] = 5, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(3264), 1, - sym_identifier, - STATE(1151), 1, - sym_string, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63430] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3266), 1, - anon_sym_END_VAR, - ACTIONS(3268), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1515), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63448] = 5, - ACTIONS(3025), 1, - anon_sym_END_VAR, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3029), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1313), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63466] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3270), 1, - anon_sym_END_VAR, - ACTIONS(3272), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, + anon_sym_RETAIN, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67105] = 8, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3184), 1, + anon_sym_VERSION, + ACTIONS(3186), 1, + anon_sym_BEGIN, + STATE(1298), 1, + sym_attribute_list, STATE(1317), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63484] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3274), 1, - anon_sym_END_VAR, - ACTIONS(3276), 1, - sym_block_comment, - ACTIONS(3), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - STATE(1318), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63502] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3278), 1, - anon_sym_END_VAR, - ACTIONS(3280), 1, sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, sym_c_style_comment, - STATE(1319), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63520] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3282), 1, - anon_sym_END_VAR, - ACTIONS(3284), 1, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67139] = 3, + ACTIONS(3190), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, sym_c_style_comment, + ACTIONS(3188), 13, + anon_sym_VERSION, + anon_sym_COLON, + anon_sym_STRUCT, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67163] = 8, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3192), 1, + anon_sym_VERSION, + ACTIONS(3194), 1, + anon_sym_BEGIN, + STATE(1299), 1, + sym_attribute_list, STATE(1320), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63538] = 4, - ACTIONS(3286), 1, - anon_sym_SQUOTE, - STATE(1321), 1, - aux_sym_string_repeat1, - ACTIONS(3288), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [63554] = 4, - ACTIONS(3286), 1, - anon_sym_DQUOTE, - STATE(1322), 1, - aux_sym_string_repeat2, - ACTIONS(3292), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67197] = 3, + ACTIONS(1550), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1548), 13, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_COLON, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67220] = 3, + ACTIONS(1554), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1552), 13, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_COLON, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67243] = 4, + ACTIONS(3198), 1, + anon_sym_VAR, + ACTIONS(3200), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(3196), 12, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67268] = 7, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3202), 1, + anon_sym_VERSION, + ACTIONS(3206), 1, + anon_sym_BEGIN, + STATE(1985), 1, + sym_var_declaration, + ACTIONS(3204), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [63570] = 5, - ACTIONS(3027), 1, - sym_identifier, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67299] = 7, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3208), 1, + anon_sym_VERSION, + ACTIONS(3212), 1, + anon_sym_BEGIN, + STATE(1912), 1, + sym_var_declaration, + ACTIONS(3210), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67330] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3101), 1, + anon_sym_BEGIN, + STATE(2068), 1, + sym_var_declaration, + ACTIONS(3099), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67358] = 3, + ACTIONS(3198), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(3196), 12, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67380] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3216), 1, + anon_sym_BEGIN, + STATE(2098), 1, + sym_var_declaration, + ACTIONS(3214), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67408] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3218), 1, + anon_sym_VERSION, + ACTIONS(3220), 1, + anon_sym_BEGIN, + STATE(1312), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67436] = 3, + ACTIONS(3224), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(3222), 12, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67458] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3226), 1, + anon_sym_VERSION, + ACTIONS(3228), 1, + anon_sym_BEGIN, + STATE(1309), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67486] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3232), 1, + anon_sym_BEGIN, + STATE(2051), 1, + sym_var_declaration, + ACTIONS(3230), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67514] = 3, + ACTIONS(3236), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(3234), 12, + anon_sym_TITLE, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_LBRACE, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [67536] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3238), 1, + anon_sym_VERSION, + ACTIONS(3240), 1, + anon_sym_BEGIN, + STATE(1306), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67564] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3242), 1, + anon_sym_VERSION, + ACTIONS(3244), 1, + anon_sym_BEGIN, + STATE(1307), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67592] = 6, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3212), 1, + anon_sym_BEGIN, + STATE(1912), 1, + sym_var_declaration, + ACTIONS(3210), 2, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67620] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3294), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63588] = 5, - ACTIONS(3027), 1, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67645] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3248), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67670] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3250), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67695] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3194), 1, + anon_sym_BEGIN, + STATE(1320), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67720] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3228), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67745] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3252), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67770] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3254), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67795] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3256), 1, + anon_sym_BEGIN, + STATE(1301), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67820] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3258), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67845] = 5, + ACTIONS(3260), 1, + anon_sym_BEGIN, + ACTIONS(3265), 1, + anon_sym_VAR, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3262), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67870] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3268), 1, + anon_sym_BEGIN, + STATE(1315), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67895] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3270), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67920] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3220), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67945] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3246), 1, + anon_sym_BEGIN, + STATE(1302), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67970] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3272), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [67995] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3272), 1, + anon_sym_BEGIN, + STATE(1303), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68020] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3240), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68045] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3240), 1, + anon_sym_BEGIN, + STATE(1306), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68070] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3186), 1, + anon_sym_BEGIN, + STATE(1317), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68095] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3244), 1, + anon_sym_BEGIN, + STATE(1310), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68120] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3244), 1, + anon_sym_BEGIN, + STATE(1307), 2, + sym_var_declaration, + aux_sym_organization_block_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68145] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3274), 1, + anon_sym_BEGIN, + STATE(2107), 1, + sym_var_declaration, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68169] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3206), 1, + anon_sym_BEGIN, + STATE(1985), 1, + sym_var_declaration, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68193] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3278), 1, + anon_sym_END_CASE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3296), 1, - anon_sym_END_VAR, - ACTIONS(3298), 1, - sym_block_comment, - ACTIONS(3), 2, + STATE(1907), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1326), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63606] = 5, - ACTIONS(3027), 1, + [68225] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3284), 1, + anon_sym_BEGIN, + STATE(2017), 1, + sym_var_declaration, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68249] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3300), 1, - anon_sym_END_VAR, - ACTIONS(3302), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1327), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63624] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3304), 1, - anon_sym_END_VAR, - ACTIONS(3306), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, + ACTIONS(3286), 1, + anon_sym_END_CASE, + STATE(2108), 1, + sym_else_clause, STATE(1328), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63642] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, - ACTIONS(3308), 1, - anon_sym_END_VAR, + sym_c_style_comment, + [68281] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3288), 1, + anon_sym_END_CASE, + STATE(1970), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68313] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3290), 1, + anon_sym_END_CASE, + STATE(1910), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68345] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3292), 1, + anon_sym_END_CASE, + STATE(1958), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68377] = 3, + ACTIONS(3190), 1, + anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63660] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3188), 10, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, sym_block_comment, + [68397] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3294), 1, + anon_sym_END_CASE, + STATE(2058), 1, + sym_else_clause, + STATE(1333), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68429] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, ACTIONS(3296), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, + anon_sym_END_CASE, + STATE(2089), 1, + sym_else_clause, + STATE(1341), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63678] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, sym_block_comment, + sym_c_style_comment, + [68461] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_END_CASE, + STATE(2015), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68493] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, ACTIONS(3300), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, + anon_sym_END_CASE, + STATE(2057), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63696] = 5, - ACTIONS(3027), 1, + [68525] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3302), 1, + anon_sym_END_CASE, + STATE(1945), 1, + sym_else_clause, + STATE(1329), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, + sym_c_style_comment, + [68557] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, ACTIONS(3304), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63714] = 4, - ACTIONS(3310), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + anon_sym_BEGIN, + STATE(2033), 1, + sym_var_declaration, + ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [63730] = 4, - ACTIONS(3310), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68581] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3306), 1, + anon_sym_END_CASE, + STATE(1973), 1, + sym_else_clause, + STATE(1344), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [63746] = 5, - ACTIONS(3027), 1, + [68613] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3308), 1, + anon_sym_END_CASE, + STATE(2091), 1, + sym_else_clause, + STATE(1340), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68645] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3310), 1, + anon_sym_END_CASE, + STATE(2059), 1, + sym_else_clause, + STATE(1355), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68677] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3312), 1, + anon_sym_END_CASE, + STATE(2102), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68709] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_END_CASE, + STATE(1919), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68741] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, ACTIONS(3316), 1, - anon_sym_END_VAR, + anon_sym_END_CASE, + STATE(1996), 1, + sym_else_clause, + STATE(1349), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68773] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3216), 1, + anon_sym_BEGIN, + STATE(2098), 1, + sym_var_declaration, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [68797] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, ACTIONS(3318), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1508), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63764] = 5, - ACTIONS(3320), 1, - anon_sym_RPAREN, - ACTIONS(3322), 1, - sym_identifier, - STATE(1658), 1, - sym_fb_parameter, - STATE(1756), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63782] = 5, - ACTIONS(3324), 1, - anon_sym_RPAREN, - ACTIONS(3326), 1, - sym_identifier, - STATE(1596), 1, - sym_parameter, - STATE(1675), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63800] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3328), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63818] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3330), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63836] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3332), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63854] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3254), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63872] = 4, - ACTIONS(3336), 1, - anon_sym_RBRACE, - STATE(1428), 1, - aux_sym_attribute_list_repeat1, - ACTIONS(3334), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [63888] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3127), 1, - anon_sym_END_VAR, - ACTIONS(3129), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1339), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63906] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3057), 1, - anon_sym_END_VAR, - ACTIONS(3059), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1361), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63924] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3338), 1, - anon_sym_END_VAR, - ACTIONS(3340), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1343), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63942] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3342), 1, - anon_sym_END_VAR, - ACTIONS(3344), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1344), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63960] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3346), 1, - anon_sym_END_VAR, - ACTIONS(3348), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1345), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63978] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3350), 1, - anon_sym_END_VAR, - ACTIONS(3352), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1346), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [63996] = 4, - ACTIONS(3354), 1, - anon_sym_SQUOTE, - STATE(1347), 1, - aux_sym_string_repeat1, - ACTIONS(3356), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64012] = 4, - ACTIONS(3354), 1, - anon_sym_DQUOTE, - STATE(1348), 1, - aux_sym_string_repeat2, - ACTIONS(3358), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64028] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3360), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64046] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3362), 1, - anon_sym_END_VAR, - ACTIONS(3364), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1351), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64064] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3366), 1, - anon_sym_END_VAR, - ACTIONS(3368), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1352), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64082] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3370), 1, - anon_sym_END_VAR, - ACTIONS(3372), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1353), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64100] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3374), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64118] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3362), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64136] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3366), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64154] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3370), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64172] = 4, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64188] = 4, - ACTIONS(3376), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64204] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1724), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64222] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3380), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1679), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64240] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3382), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64258] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3384), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64276] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3386), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64294] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3388), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64312] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3390), 1, - anon_sym_END_VAR, - ACTIONS(3392), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, + anon_sym_END_CASE, + STATE(1989), 1, + sym_else_clause, STATE(1365), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64330] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3394), 1, - anon_sym_END_VAR, - ACTIONS(3396), 1, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, + sym_c_style_comment, + [68829] = 3, + ACTIONS(3182), 1, + anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1366), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64348] = 5, - ACTIONS(3027), 1, + ACTIONS(3180), 10, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [68849] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3398), 1, - anon_sym_END_VAR, - ACTIONS(3400), 1, - sym_block_comment, - ACTIONS(3), 2, + ACTIONS(3320), 1, + anon_sym_END_CASE, + STATE(1920), 1, + sym_else_clause, + STATE(1348), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - STATE(1368), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64366] = 5, - ACTIONS(3027), 1, + [68881] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3402), 1, - anon_sym_END_VAR, - ACTIONS(3404), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1385), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64384] = 4, - ACTIONS(3406), 1, - anon_sym_SQUOTE, - STATE(1392), 1, - aux_sym_string_repeat1, - ACTIONS(3408), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64400] = 4, - ACTIONS(3406), 1, - anon_sym_DQUOTE, - STATE(1394), 1, - aux_sym_string_repeat2, - ACTIONS(3410), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64416] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3412), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64434] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3414), 1, - anon_sym_END_VAR, - ACTIONS(3416), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1397), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64452] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3418), 1, - anon_sym_END_VAR, - ACTIONS(3420), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1399), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64470] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3422), 1, - anon_sym_END_VAR, - ACTIONS(3424), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1400), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64488] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3426), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64506] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3414), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64524] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3137), 1, - anon_sym_END_VAR, - ACTIONS(3139), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1375), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64542] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3418), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64560] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3428), 1, - anon_sym_END_VAR, - ACTIONS(3430), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1379), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64578] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_END_VAR, - ACTIONS(3434), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1380), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64596] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3436), 1, - anon_sym_END_VAR, - ACTIONS(3438), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1381), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64614] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3440), 1, - anon_sym_END_VAR, - ACTIONS(3442), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1382), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64632] = 4, - ACTIONS(3444), 1, - anon_sym_SQUOTE, - STATE(1383), 1, - aux_sym_string_repeat1, - ACTIONS(3446), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64648] = 4, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - STATE(1384), 1, - aux_sym_string_repeat2, - ACTIONS(3448), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64664] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3450), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64682] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3452), 1, - anon_sym_END_VAR, - ACTIONS(3454), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1388), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64700] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3456), 1, - anon_sym_END_VAR, - ACTIONS(3458), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1389), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64718] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3460), 1, - anon_sym_END_VAR, - ACTIONS(3462), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1390), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64736] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3464), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64754] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3452), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64772] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3456), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64790] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3460), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64808] = 4, - ACTIONS(3466), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64824] = 4, - ACTIONS(3466), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64840] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3422), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64858] = 5, ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3468), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1758), 1, - sym_fb_parameter_list, + anon_sym_END_CASE, + STATE(1933), 1, + sym_else_clause, + STATE(1334), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [64876] = 5, + [68913] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3324), 1, + anon_sym_END_CASE, + STATE(1934), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [68945] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3470), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1674), 1, - sym_parameter_list, + anon_sym_END_CASE, + STATE(2080), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [64894] = 5, - ACTIONS(3027), 1, + [68977] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3328), 1, + anon_sym_END_CASE, + STATE(1949), 1, + sym_else_clause, + STATE(1354), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, sym_block_comment, - ACTIONS(3472), 1, - anon_sym_END_VAR, + sym_c_style_comment, + [69009] = 3, + ACTIONS(3178), 1, + anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64912] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3176), 10, + anon_sym_VERSION, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, sym_block_comment, - ACTIONS(3474), 1, - anon_sym_END_VAR, + [69029] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3330), 1, + anon_sym_END_CASE, + STATE(1957), 1, + sym_else_clause, + STATE(1327), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69061] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3332), 1, + anon_sym_END_CASE, + STATE(1972), 1, + sym_else_clause, + STATE(1324), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69093] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3334), 1, + anon_sym_END_CASE, + STATE(2019), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69125] = 9, + ACTIONS(31), 1, + anon_sym_POUND, + ACTIONS(3276), 1, + anon_sym_ELSE, + ACTIONS(3280), 1, + sym_number, + ACTIONS(3282), 1, + sym_identifier, + ACTIONS(3336), 1, + anon_sym_END_CASE, + STATE(1982), 1, + sym_else_clause, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69157] = 5, + ACTIONS(2833), 1, + anon_sym_VAR, + ACTIONS(3212), 1, + anon_sym_BEGIN, + STATE(1912), 1, + sym_var_declaration, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(2831), 7, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [69181] = 3, + ACTIONS(1832), 1, + anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64930] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, + ACTIONS(1829), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, sym_block_comment, - ACTIONS(3476), 1, - anon_sym_END_VAR, + [69200] = 3, + ACTIONS(1907), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1905), 8, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [69219] = 3, + ACTIONS(1907), 1, + anon_sym_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [64948] = 5, - ACTIONS(63), 1, + ACTIONS(1905), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69238] = 3, + ACTIONS(2030), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2027), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69257] = 3, + ACTIONS(1916), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1913), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69276] = 3, + ACTIONS(1953), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1950), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69295] = 3, + ACTIONS(1842), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1839), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69314] = 3, + ACTIONS(1866), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1863), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69333] = 7, + ACTIONS(3338), 1, + anon_sym_POUND, + ACTIONS(3343), 1, + sym_number, + ACTIONS(3346), 1, + sym_identifier, + ACTIONS(3341), 2, + anon_sym_ELSE, + anon_sym_END_CASE, + STATE(1365), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2079), 2, + sym_prefixed_identifier, + sym_range, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69360] = 3, + ACTIONS(1772), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1770), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69379] = 3, + ACTIONS(1856), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1853), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69398] = 3, + ACTIONS(3351), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3349), 8, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [69417] = 3, + ACTIONS(1772), 1, + anon_sym_VAR, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1770), 8, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + [69436] = 3, + ACTIONS(1872), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1869), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69455] = 3, + ACTIONS(2020), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2017), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69474] = 3, + ACTIONS(2063), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(2060), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69493] = 3, + ACTIONS(1886), 1, + anon_sym_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(1883), 9, + anon_sym_BEGIN, + anon_sym_VAR_INPUT, + anon_sym_VAR_OUTPUT, + anon_sym_VAR_IN_OUT, + anon_sym_VAR_TEMP, + anon_sym_VAR_CONSTANT, + anon_sym_VAR_RETAIN, + anon_sym_VAR_NON_RETAIN, + sym_block_comment, + [69512] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, anon_sym_SQUOTE, - ACTIONS(65), 1, + ACTIONS(3355), 1, anon_sym_DQUOTE, - ACTIONS(3478), 1, + STATE(207), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, sym_identifier, - STATE(1009), 1, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69538] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(167), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69564] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(227), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69590] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(147), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69616] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(217), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69642] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(157), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69668] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(127), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69694] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(197), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69720] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(177), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69746] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(46), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69772] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(187), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69798] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(117), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69824] = 7, + ACTIONS(2234), 1, + anon_sym_SLASH, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + STATE(137), 1, + sym_region_name, + ACTIONS(2236), 2, + anon_sym_DASH, + sym_identifier, + STATE(407), 2, + sym_string, + aux_sym_region_name_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [69850] = 8, + ACTIONS(3357), 1, + anon_sym_NON_RETAIN, + ACTIONS(3359), 1, + anon_sym_RETAIN, + ACTIONS(3361), 1, + anon_sym_CONSTANT, + ACTIONS(3363), 1, + anon_sym_END_VAR, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3367), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1577), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [69877] = 6, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + STATE(1833), 1, + sym_attribute_value, + STATE(1859), 1, sym_string, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [64966] = 4, - ACTIONS(3480), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [64982] = 5, - ACTIONS(3027), 1, + ACTIONS(3369), 3, + anon_sym_TRUE, + anon_sym_FALSE, sym_identifier, - ACTIONS(3482), 1, + [69900] = 8, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3371), 1, + anon_sym_NON_RETAIN, + ACTIONS(3373), 1, + anon_sym_RETAIN, + ACTIONS(3375), 1, + anon_sym_CONSTANT, + ACTIONS(3377), 1, anon_sym_END_VAR, - ACTIONS(3484), 1, + ACTIONS(3379), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1403), 2, + STATE(1670), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65000] = 4, - ACTIONS(3480), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65016] = 5, - ACTIONS(3322), 1, + aux_sym_type_definition_repeat1, + [69927] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3486), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1824), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65034] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3488), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1697), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65052] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3490), 1, + ACTIONS(3381), 1, + anon_sym_NON_RETAIN, + ACTIONS(3383), 1, + anon_sym_RETAIN, + ACTIONS(3385), 1, + anon_sym_CONSTANT, + ACTIONS(3387), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65070] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3492), 1, - anon_sym_END_VAR, - ACTIONS(3494), 1, + ACTIONS(3389), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1429), 2, + STATE(1507), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65088] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [69954] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3496), 1, + ACTIONS(3391), 1, + anon_sym_NON_RETAIN, + ACTIONS(3393), 1, + anon_sym_RETAIN, + ACTIONS(3395), 1, + anon_sym_CONSTANT, + ACTIONS(3397), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65106] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3498), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65124] = 5, - ACTIONS(3500), 1, - anon_sym_END_VAR, - ACTIONS(3502), 1, - sym_identifier, - ACTIONS(3505), 1, + ACTIONS(3399), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1604), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65142] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [69981] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3508), 1, + ACTIONS(3401), 1, + anon_sym_NON_RETAIN, + ACTIONS(3403), 1, + anon_sym_RETAIN, + ACTIONS(3405), 1, + anon_sym_CONSTANT, + ACTIONS(3407), 1, anon_sym_END_VAR, - ACTIONS(3510), 1, + ACTIONS(3409), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1448), 2, + STATE(1806), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65160] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70008] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3512), 1, + ACTIONS(3411), 1, + anon_sym_NON_RETAIN, + ACTIONS(3413), 1, + anon_sym_RETAIN, + ACTIONS(3415), 1, + anon_sym_CONSTANT, + ACTIONS(3417), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65178] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3077), 1, - anon_sym_END_VAR, - ACTIONS(3079), 1, + ACTIONS(3419), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1411), 2, + STATE(1653), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65196] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70035] = 6, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3423), 1, anon_sym_END_VAR, - ACTIONS(3516), 1, + ACTIONS(3425), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1415), 2, + STATE(1531), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65214] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3421), 3, + anon_sym_NON_RETAIN, + anon_sym_RETAIN, + anon_sym_CONSTANT, + [70058] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3518), 1, + ACTIONS(3427), 1, + anon_sym_NON_RETAIN, + ACTIONS(3429), 1, + anon_sym_RETAIN, + ACTIONS(3431), 1, + anon_sym_CONSTANT, + ACTIONS(3433), 1, anon_sym_END_VAR, - ACTIONS(3520), 1, + ACTIONS(3435), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1416), 2, + STATE(1762), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65232] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70085] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3522), 1, + ACTIONS(3437), 1, + anon_sym_NON_RETAIN, + ACTIONS(3439), 1, + anon_sym_RETAIN, + ACTIONS(3441), 1, + anon_sym_CONSTANT, + ACTIONS(3443), 1, anon_sym_END_VAR, - ACTIONS(3524), 1, + ACTIONS(3445), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1417), 2, + STATE(1687), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65250] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70112] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3526), 1, + ACTIONS(3447), 1, + anon_sym_NON_RETAIN, + ACTIONS(3449), 1, + anon_sym_RETAIN, + ACTIONS(3451), 1, + anon_sym_CONSTANT, + ACTIONS(3453), 1, anon_sym_END_VAR, - ACTIONS(3528), 1, + ACTIONS(3455), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1418), 2, + STATE(1633), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65268] = 4, - ACTIONS(3530), 1, - anon_sym_SQUOTE, - STATE(1419), 1, - aux_sym_string_repeat1, - ACTIONS(3532), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65284] = 4, - ACTIONS(3530), 1, - anon_sym_DQUOTE, - STATE(1420), 1, - aux_sym_string_repeat2, - ACTIONS(3534), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65300] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70139] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3536), 1, + ACTIONS(3457), 1, + anon_sym_NON_RETAIN, + ACTIONS(3459), 1, + anon_sym_RETAIN, + ACTIONS(3461), 1, + anon_sym_CONSTANT, + ACTIONS(3463), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65318] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3538), 1, - anon_sym_END_VAR, - ACTIONS(3540), 1, + ACTIONS(3465), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1424), 2, + STATE(1796), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65336] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70166] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3542), 1, + ACTIONS(3467), 1, + anon_sym_NON_RETAIN, + ACTIONS(3469), 1, + anon_sym_RETAIN, + ACTIONS(3471), 1, + anon_sym_CONSTANT, + ACTIONS(3473), 1, anon_sym_END_VAR, - ACTIONS(3544), 1, + ACTIONS(3475), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1425), 2, + STATE(1479), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65354] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70193] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3546), 1, + ACTIONS(3477), 1, + anon_sym_NON_RETAIN, + ACTIONS(3479), 1, + anon_sym_RETAIN, + ACTIONS(3481), 1, + anon_sym_CONSTANT, + ACTIONS(3483), 1, anon_sym_END_VAR, - ACTIONS(3548), 1, + ACTIONS(3485), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1426), 2, + STATE(1542), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65372] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70220] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3550), 1, + ACTIONS(3487), 1, + anon_sym_NON_RETAIN, + ACTIONS(3489), 1, + anon_sym_RETAIN, + ACTIONS(3491), 1, + anon_sym_CONSTANT, + ACTIONS(3493), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65390] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3538), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65408] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3542), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65426] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3546), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65444] = 4, - ACTIONS(3552), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65460] = 4, - ACTIONS(3552), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65476] = 4, - ACTIONS(3554), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65492] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3556), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1825), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65510] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1695), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65528] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3560), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65546] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3562), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65564] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3564), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65582] = 4, - ACTIONS(3554), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65598] = 4, - ACTIONS(3568), 1, - anon_sym_RBRACE, - STATE(1593), 1, - aux_sym_attribute_list_repeat1, - ACTIONS(3566), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65614] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3570), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65632] = 4, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(1589), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3574), 2, - anon_sym_RPAREN, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65648] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3576), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65666] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3107), 1, - anon_sym_END_VAR, - ACTIONS(3109), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1440), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65684] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3262), 1, - anon_sym_END_VAR, - ACTIONS(3578), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1598), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65702] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3580), 1, - anon_sym_END_VAR, - ACTIONS(3582), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1444), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65720] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3584), 1, - anon_sym_END_VAR, - ACTIONS(3586), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1445), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65738] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3588), 1, - anon_sym_END_VAR, - ACTIONS(3590), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1446), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65756] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3592), 1, - anon_sym_END_VAR, - ACTIONS(3594), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1447), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65774] = 4, - ACTIONS(3596), 1, - anon_sym_SQUOTE, - STATE(1449), 1, - aux_sym_string_repeat1, - ACTIONS(3598), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65790] = 4, - ACTIONS(3596), 1, - anon_sym_DQUOTE, - STATE(1450), 1, - aux_sym_string_repeat2, - ACTIONS(3600), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65806] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3602), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65824] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3604), 1, - anon_sym_END_VAR, - ACTIONS(3606), 1, + ACTIONS(3495), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, STATE(1453), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65842] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [70247] = 8, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3608), 1, + ACTIONS(3497), 1, + anon_sym_NON_RETAIN, + ACTIONS(3499), 1, + anon_sym_RETAIN, + ACTIONS(3501), 1, + anon_sym_CONSTANT, + ACTIONS(3503), 1, anon_sym_END_VAR, - ACTIONS(3610), 1, + ACTIONS(3505), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1454), 2, + STATE(1733), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65860] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3612), 1, - anon_sym_END_VAR, - ACTIONS(3614), 1, - sym_block_comment, - ACTIONS(3), 2, + aux_sym_type_definition_repeat1, + [70274] = 6, + ACTIONS(3507), 1, + anon_sym_END_IF, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + STATE(1923), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - STATE(1455), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65878] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, sym_block_comment, - ACTIONS(3616), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, + sym_c_style_comment, + [70296] = 7, + ACTIONS(3513), 1, + anon_sym_RPAREN, + ACTIONS(3515), 1, + sym_identifier, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1898), 1, + sym_parameter_list, + STATE(1965), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [65896] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, sym_block_comment, + sym_c_style_comment, + [70320] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3517), 1, + anon_sym_END_IF, + STATE(2028), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70342] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3519), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1903), 1, + sym_parameter_list, + STATE(2085), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70366] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3521), 1, + anon_sym_END_IF, + STATE(1960), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70388] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3523), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1876), 1, + sym_parameter_list, + STATE(2039), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70412] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3525), 1, + anon_sym_END_IF, + STATE(1905), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70434] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3527), 1, + anon_sym_END_IF, + STATE(2095), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70456] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3529), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1882), 1, + sym_parameter_list, + STATE(1935), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70480] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3531), 1, + anon_sym_END_IF, + STATE(1946), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70502] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3533), 1, + anon_sym_END_IF, + STATE(1987), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70524] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3535), 1, + anon_sym_END_IF, + STATE(2042), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70546] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3537), 1, + anon_sym_END_IF, + STATE(1916), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70568] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3539), 1, + anon_sym_END_IF, + STATE(1917), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70590] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3541), 1, + anon_sym_END_IF, + STATE(2134), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70612] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3543), 1, + anon_sym_END_IF, + STATE(1975), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70634] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3545), 1, + anon_sym_END_IF, + STATE(1988), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70656] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3547), 1, + anon_sym_END_IF, + STATE(1992), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70678] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3549), 1, + anon_sym_END_IF, + STATE(1908), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70700] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3551), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1877), 1, + sym_parameter_list, + STATE(2037), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70724] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3553), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1868), 1, + sym_parameter_list, + STATE(2024), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70748] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3555), 1, + anon_sym_END_IF, + STATE(2047), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70770] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3557), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1872), 1, + sym_parameter_list, + STATE(2090), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70794] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3559), 1, + anon_sym_END_IF, + STATE(2106), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70816] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3561), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1892), 1, + sym_parameter_list, + STATE(1997), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70840] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3563), 1, + anon_sym_END_IF, + STATE(1955), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70862] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3565), 1, + anon_sym_END_IF, + STATE(2038), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70884] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3567), 1, + anon_sym_END_IF, + STATE(1914), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70906] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3569), 1, + anon_sym_END_IF, + STATE(2002), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70928] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1878), 1, + sym_parameter_list, + STATE(1998), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70952] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1901), 1, + sym_parameter_list, + STATE(1963), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70976] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3575), 1, + anon_sym_END_IF, + STATE(2049), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [70998] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3577), 1, + anon_sym_END_IF, + STATE(2023), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71020] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3579), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1887), 1, + sym_parameter_list, + STATE(2010), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71044] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3581), 1, + anon_sym_END_IF, + STATE(1968), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71066] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3583), 1, + anon_sym_END_IF, + STATE(1931), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71088] = 6, + ACTIONS(3509), 1, + anon_sym_ELSIF, + ACTIONS(3511), 1, + anon_sym_ELSE, + ACTIONS(3585), 1, + anon_sym_END_IF, + STATE(1918), 1, + sym_else_clause, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71110] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3587), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1874), 1, + sym_parameter_list, + STATE(2062), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71134] = 7, + ACTIONS(3515), 1, + sym_identifier, + ACTIONS(3589), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1853), 1, + sym_fb_parameter, + STATE(1863), 1, + sym_parameter_list, + STATE(1948), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71158] = 4, + ACTIONS(3593), 1, + anon_sym_ELSIF, + ACTIONS(3591), 2, + anon_sym_END_IF, + anon_sym_ELSE, + STATE(1442), 2, + sym_elsif_clause, + aux_sym_if_statement_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71175] = 6, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(3596), 1, + anon_sym_TITLE, + ACTIONS(3598), 1, + anon_sym_VERSION, + ACTIONS(3600), 1, + anon_sym_STRUCT, + STATE(1902), 1, + sym_attribute_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71196] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3602), 1, + anon_sym_END_VAR, ACTIONS(3604), 1, - anon_sym_END_VAR, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1777), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65914] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71214] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, + ACTIONS(3606), 1, + anon_sym_END_VAR, ACTIONS(3608), 1, - anon_sym_END_VAR, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65932] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71232] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3493), 1, + anon_sym_END_VAR, + ACTIONS(3495), 1, sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1453), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71250] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3610), 1, + anon_sym_END_VAR, ACTIONS(3612), 1, - anon_sym_END_VAR, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1457), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65950] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71268] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3614), 1, + anon_sym_END_VAR, + ACTIONS(3616), 1, sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1458), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71286] = 5, + ACTIONS(3365), 1, + sym_identifier, ACTIONS(3618), 1, anon_sym_END_VAR, + ACTIONS(3620), 1, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1459), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [65968] = 4, - ACTIONS(3620), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [65984] = 4, - ACTIONS(3620), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66000] = 5, - ACTIONS(3322), 1, + aux_sym_type_definition_repeat1, + [71304] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3622), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1821), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66018] = 5, - ACTIONS(3326), 1, - sym_identifier, + anon_sym_END_VAR, ACTIONS(3624), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1692), 1, - sym_parameter_list, - ACTIONS(3), 3, + sym_block_comment, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - [66036] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, + STATE(1460), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71322] = 4, ACTIONS(3626), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66054] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3628), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66072] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3630), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66090] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3632), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1761), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, + anon_sym_SQUOTE, + STATE(1461), 1, + aux_sym_string_repeat1, + ACTIONS(3628), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66108] = 5, - ACTIONS(3326), 1, + [71338] = 4, + ACTIONS(3626), 1, + anon_sym_DQUOTE, + STATE(1462), 1, + aux_sym_string_repeat2, + ACTIONS(3632), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71354] = 5, + ACTIONS(3365), 1, sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, ACTIONS(3634), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1681), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66126] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3097), 1, anon_sym_END_VAR, - ACTIONS(3099), 1, - sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1498), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66144] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71372] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3636), 1, anon_sym_END_VAR, @@ -63605,36 +69025,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1505), 2, + STATE(1465), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66162] = 4, - ACTIONS(3642), 1, - anon_sym_RBRACE, - STATE(1593), 1, - aux_sym_attribute_list_repeat1, - ACTIONS(3640), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66178] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71390] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3117), 1, + ACTIONS(3640), 1, anon_sym_END_VAR, - ACTIONS(3119), 1, + ACTIONS(3642), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1469), 2, + STATE(1466), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66196] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71408] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3644), 1, anon_sym_END_VAR, @@ -63643,1346 +69051,1123 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1506), 2, + STATE(1467), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66214] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71426] = 5, + ACTIONS(3365), 1, sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, ACTIONS(3648), 1, anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71444] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3644), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71462] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3640), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71480] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3636), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71498] = 4, ACTIONS(3650), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1473), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66232] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3652), 1, - anon_sym_END_VAR, - ACTIONS(3654), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1474), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66250] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3656), 1, - anon_sym_END_VAR, - ACTIONS(3658), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1475), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66268] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3660), 1, - anon_sym_END_VAR, - ACTIONS(3662), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1476), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66286] = 4, - ACTIONS(3664), 1, anon_sym_SQUOTE, - STATE(1477), 1, - aux_sym_string_repeat1, - ACTIONS(3666), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66302] = 4, - ACTIONS(3664), 1, - anon_sym_DQUOTE, - STATE(1478), 1, - aux_sym_string_repeat2, - ACTIONS(3668), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66318] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3670), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66336] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3672), 1, - anon_sym_END_VAR, - ACTIONS(3674), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1480), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66354] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_END_VAR, - ACTIONS(3678), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1481), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66372] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3680), 1, - anon_sym_END_VAR, - ACTIONS(3682), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1482), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66390] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3684), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66408] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3672), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66426] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3676), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66444] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3680), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66462] = 4, - ACTIONS(3686), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66478] = 4, - ACTIONS(3686), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [66494] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3688), 1, - anon_sym_RPAREN, STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71514] = 4, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71530] = 5, + ACTIONS(3656), 1, + anon_sym_RPAREN, + ACTIONS(3658), 1, + sym_identifier, + STATE(1853), 1, + sym_fb_parameter, + STATE(2010), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71548] = 5, + ACTIONS(3660), 1, + anon_sym_RPAREN, + ACTIONS(3662), 1, + sym_identifier, + STATE(1660), 1, sym_parameter, - STATE(1694), 1, + STATE(1903), 1, sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66512] = 5, - ACTIONS(3027), 1, + [71566] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3690), 1, + ACTIONS(3664), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66530] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71584] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3692), 1, + ACTIONS(3666), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66548] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71602] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3694), 1, + ACTIONS(3668), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66566] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [71620] = 4, + ACTIONS(3670), 1, + anon_sym_COMMA, + STATE(1471), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3672), 2, + anon_sym_RPAREN, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71636] = 4, + ACTIONS(3676), 1, + anon_sym_RBRACE, + STATE(1496), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(3674), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71652] = 5, + ACTIONS(3678), 1, + anon_sym_END_STRUCT, + ACTIONS(3680), 1, sym_identifier, - ACTIONS(3047), 1, + ACTIONS(3683), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71670] = 4, + ACTIONS(3686), 1, + anon_sym_COMMA, + STATE(1471), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3689), 2, + anon_sym_RPAREN, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [71686] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3473), 1, anon_sym_END_VAR, - ACTIONS(3049), 1, + ACTIONS(3475), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1479), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71704] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3691), 1, + anon_sym_END_VAR, + ACTIONS(3693), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1483), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71722] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3695), 1, + anon_sym_END_VAR, + ACTIONS(3697), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1484), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71740] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3699), 1, + anon_sym_END_VAR, + ACTIONS(3701), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1485), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71758] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3703), 1, + anon_sym_END_VAR, + ACTIONS(3705), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, STATE(1486), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66584] = 4, - ACTIONS(3696), 1, + aux_sym_type_definition_repeat1, + [71776] = 4, + ACTIONS(3707), 1, anon_sym_SQUOTE, STATE(1487), 1, aux_sym_string_repeat1, - ACTIONS(3698), 2, + ACTIONS(3709), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66600] = 4, - ACTIONS(3696), 1, + [71792] = 4, + ACTIONS(3707), 1, anon_sym_DQUOTE, STATE(1488), 1, aux_sym_string_repeat2, - ACTIONS(3700), 2, + ACTIONS(3711), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66616] = 5, - ACTIONS(3027), 1, + [71808] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3702), 1, + ACTIONS(3713), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66634] = 4, - ACTIONS(3704), 1, + aux_sym_type_definition_repeat1, + [71826] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3715), 1, + anon_sym_END_VAR, + ACTIONS(3717), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1492), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71844] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3719), 1, + anon_sym_END_VAR, + ACTIONS(3721), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1493), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71862] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3723), 1, + anon_sym_END_VAR, + ACTIONS(3725), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1494), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71880] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3727), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71898] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3723), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71916] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3719), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71934] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3715), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [71952] = 4, + ACTIONS(3729), 1, anon_sym_SQUOTE, - STATE(1585), 1, + STATE(1596), 1, aux_sym_string_repeat1, - ACTIONS(3312), 2, + ACTIONS(3652), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66650] = 4, - ACTIONS(3704), 1, + [71968] = 4, + ACTIONS(3729), 1, anon_sym_DQUOTE, - STATE(1586), 1, + STATE(1612), 1, aux_sym_string_repeat2, - ACTIONS(3314), 2, + ACTIONS(3654), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66666] = 5, - ACTIONS(3027), 1, + [71984] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3706), 1, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3731), 1, anon_sym_END_VAR, - ACTIONS(3708), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72002] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(2024), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72020] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3735), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1887), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72038] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3737), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72056] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3739), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72074] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3741), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72092] = 5, + ACTIONS(3743), 1, + anon_sym_END_STRUCT, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3747), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1714), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72110] = 4, + ACTIONS(3751), 1, + anon_sym_RBRACE, + STATE(1533), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(3749), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72126] = 5, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(3753), 1, + anon_sym_VERSION, + ACTIONS(3755), 1, + anon_sym_STRUCT, + STATE(1869), 1, + sym_attribute_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72144] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3757), 1, + anon_sym_END_VAR, + ACTIONS(3759), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1719), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72162] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3387), 1, + anon_sym_END_VAR, + ACTIONS(3389), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, STATE(1507), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66684] = 3, - ACTIONS(3710), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66698] = 3, - ACTIONS(3712), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66712] = 3, - ACTIONS(3714), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66726] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72180] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3761), 1, anon_sym_END_VAR, - ACTIONS(3718), 1, + ACTIONS(3763), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1509), 2, + STATE(1708), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66744] = 4, - ACTIONS(3720), 1, + aux_sym_type_definition_repeat1, + [72198] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_END_VAR, + ACTIONS(3767), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1511), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72216] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3769), 1, + anon_sym_END_VAR, + ACTIONS(3771), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1512), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72234] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3773), 1, + anon_sym_END_VAR, + ACTIONS(3775), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1513), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72252] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3777), 1, + anon_sym_END_VAR, + ACTIONS(3779), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1514), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72270] = 4, + ACTIONS(3781), 1, anon_sym_SQUOTE, - STATE(1513), 1, + STATE(1515), 1, aux_sym_string_repeat1, - ACTIONS(3722), 2, + ACTIONS(3783), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66760] = 4, - ACTIONS(3720), 1, + [72286] = 4, + ACTIONS(3781), 1, anon_sym_DQUOTE, - STATE(1514), 1, + STATE(1516), 1, aux_sym_string_repeat2, - ACTIONS(3724), 2, + ACTIONS(3785), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [66776] = 5, - ACTIONS(3027), 1, + [72302] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3726), 1, + ACTIONS(3787), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66794] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72320] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3482), 1, + ACTIONS(3789), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66812] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3728), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [66830] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3730), 1, - anon_sym_END_VAR, - ACTIONS(3732), 1, + ACTIONS(3791), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1519), 2, + STATE(1520), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66848] = 3, - ACTIONS(3734), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66862] = 3, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66876] = 3, - ACTIONS(3738), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [66890] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72338] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3740), 1, + ACTIONS(3793), 1, anon_sym_END_VAR, - ACTIONS(3742), 1, + ACTIONS(3795), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1523), 2, + STATE(1521), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66908] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72356] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3744), 1, + ACTIONS(3797), 1, anon_sym_END_VAR, - ACTIONS(3746), 1, + ACTIONS(3799), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1524), 2, + STATE(1522), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66926] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72374] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3748), 1, + ACTIONS(3801), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66944] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72392] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3730), 1, + ACTIONS(3797), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66962] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72410] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3740), 1, + ACTIONS(3793), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66980] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72428] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3492), 1, + ACTIONS(3789), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [66998] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3744), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67016] = 3, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67030] = 3, - ACTIONS(3752), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67044] = 3, - ACTIONS(3754), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67058] = 4, - ACTIONS(3756), 1, + aux_sym_type_definition_repeat1, + [72446] = 4, + ACTIONS(3803), 1, anon_sym_SQUOTE, - STATE(1585), 1, + STATE(1596), 1, aux_sym_string_repeat1, - ACTIONS(3312), 2, + ACTIONS(3652), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67074] = 4, - ACTIONS(3756), 1, + [72462] = 4, + ACTIONS(3803), 1, anon_sym_DQUOTE, - STATE(1586), 1, + STATE(1612), 1, aux_sym_string_repeat2, - ACTIONS(3314), 2, + ACTIONS(3654), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67090] = 5, - ACTIONS(3027), 1, + [72478] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3508), 1, + ACTIONS(3805), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67108] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72496] = 5, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3037), 1, - anon_sym_END_VAR, - ACTIONS(3039), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1354), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67126] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3758), 1, + ACTIONS(3807), 1, anon_sym_RPAREN, - STATE(1658), 1, + STATE(1853), 1, sym_fb_parameter, - STATE(1716), 1, + STATE(1997), 1, sym_fb_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67144] = 5, - ACTIONS(3326), 1, + [72514] = 5, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3809), 1, anon_sym_RPAREN, - STATE(1596), 1, + STATE(1660), 1, sym_parameter, - STATE(1687), 1, + STATE(1868), 1, sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67162] = 5, - ACTIONS(3027), 1, + [72532] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3762), 1, + ACTIONS(3811), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67180] = 3, - ACTIONS(3764), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67194] = 3, - ACTIONS(3766), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67208] = 3, - ACTIONS(3768), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67222] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72550] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3770), 1, + ACTIONS(3813), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67240] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72568] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3772), 1, + ACTIONS(3815), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67258] = 5, - ACTIONS(3322), 1, + aux_sym_type_definition_repeat1, + [72586] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3774), 1, - anon_sym_RPAREN, - STATE(1658), 1, - sym_fb_parameter, - STATE(1856), 1, - sym_fb_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [67276] = 3, - ACTIONS(3776), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67290] = 3, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67304] = 3, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67318] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3782), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_parameter, - STATE(1677), 1, - sym_parameter_list, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [67336] = 3, - ACTIONS(3784), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67350] = 4, - ACTIONS(3786), 1, - anon_sym_SQUOTE, - STATE(1611), 1, - aux_sym_string_repeat1, - ACTIONS(3788), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [67366] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3143), 1, + ACTIONS(3817), 1, anon_sym_END_VAR, - ACTIONS(3145), 1, + ACTIONS(3819), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1583), 2, + STATE(1489), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67384] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72604] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3790), 1, + ACTIONS(3423), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67402] = 3, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67416] = 3, - ACTIONS(3794), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67430] = 3, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67444] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3798), 1, - anon_sym_END_VAR, - ACTIONS(3800), 1, + ACTIONS(3425), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1590), 2, + STATE(1531), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67462] = 4, - ACTIONS(3786), 1, - anon_sym_DQUOTE, - STATE(1614), 1, - aux_sym_string_repeat2, - ACTIONS(3802), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [67478] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72622] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3804), 1, + ACTIONS(3821), 1, anon_sym_END_VAR, - ACTIONS(3806), 1, + ACTIONS(3823), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1591), 2, + STATE(1558), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67496] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72640] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3825), 1, anon_sym_END_VAR, - ACTIONS(3810), 1, + ACTIONS(3827), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1592), 2, + STATE(1559), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67514] = 3, - ACTIONS(3812), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67528] = 3, - ACTIONS(3814), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67542] = 3, - ACTIONS(3816), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67556] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72658] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3818), 1, + ACTIONS(3829), 1, anon_sym_END_VAR, - ACTIONS(3820), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1594), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67574] = 3, - ACTIONS(3822), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67588] = 3, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67602] = 3, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67616] = 3, - ACTIONS(3828), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67630] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3153), 1, - anon_sym_END_VAR, - ACTIONS(3155), 1, + ACTIONS(3831), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, STATE(1560), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67648] = 4, - ACTIONS(3830), 1, + aux_sym_type_definition_repeat1, + [72676] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3833), 1, + anon_sym_END_VAR, + ACTIONS(3835), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1561), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72694] = 4, + ACTIONS(3837), 1, anon_sym_SQUOTE, - STATE(1595), 1, + STATE(1562), 1, aux_sym_string_repeat1, - ACTIONS(3832), 2, + ACTIONS(3839), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67664] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3834), 1, - anon_sym_END_VAR, - ACTIONS(3836), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1564), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67682] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3838), 1, - anon_sym_END_VAR, - ACTIONS(3840), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1565), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67700] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3842), 1, - anon_sym_END_VAR, - ACTIONS(3844), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1569), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67718] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3846), 1, - anon_sym_END_VAR, - ACTIONS(3848), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1570), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67736] = 3, - ACTIONS(3850), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67750] = 3, - ACTIONS(3852), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67764] = 3, - ACTIONS(3854), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67778] = 4, - ACTIONS(3856), 1, - anon_sym_SQUOTE, - STATE(1571), 1, - aux_sym_string_repeat1, - ACTIONS(3858), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [67794] = 4, - ACTIONS(3856), 1, + [72710] = 4, + ACTIONS(3837), 1, anon_sym_DQUOTE, - STATE(1573), 1, + STATE(1563), 1, aux_sym_string_repeat2, - ACTIONS(3860), 2, + ACTIONS(3841), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [67810] = 5, - ACTIONS(3027), 1, + [72726] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, + ACTIONS(3843), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72744] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3845), 1, + anon_sym_END_VAR, + ACTIONS(3847), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1566), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72762] = 4, + ACTIONS(3852), 1, + anon_sym_RBRACE, + STATE(1533), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(3849), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72778] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_END_VAR, + ACTIONS(3485), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1542), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72796] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3854), 1, + anon_sym_END_VAR, + ACTIONS(3856), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1568), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72814] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3858), 1, + anon_sym_END_VAR, + ACTIONS(3860), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1546), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72832] = 5, + ACTIONS(3365), 1, + sym_identifier, ACTIONS(3862), 1, anon_sym_END_VAR, + ACTIONS(3864), 1, + sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1547), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67828] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72850] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3864), 1, - anon_sym_END_VAR, ACTIONS(3866), 1, + anon_sym_END_VAR, + ACTIONS(3868), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1580), 2, + STATE(1548), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67846] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [72868] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3868), 1, - anon_sym_END_VAR, ACTIONS(3870), 1, + anon_sym_END_VAR, + ACTIONS(3872), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1581), 2, + STATE(1549), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [67864] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3872), 1, - anon_sym_END_VAR, + aux_sym_type_definition_repeat1, + [72886] = 4, ACTIONS(3874), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1582), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67882] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3876), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67900] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3864), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67918] = 3, - ACTIONS(3878), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67932] = 3, - ACTIONS(3880), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67946] = 3, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [67960] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3868), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67978] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3872), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [67996] = 4, - ACTIONS(3884), 1, anon_sym_SQUOTE, - STATE(1585), 1, + STATE(1550), 1, aux_sym_string_repeat1, - ACTIONS(3312), 2, + ACTIONS(3876), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68012] = 5, - ACTIONS(3027), 1, + [72902] = 4, + ACTIONS(3874), 1, + anon_sym_DQUOTE, + STATE(1551), 1, + aux_sym_string_repeat2, + ACTIONS(3878), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [72918] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3880), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72936] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3882), 1, + anon_sym_END_VAR, + ACTIONS(3884), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1555), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72954] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3886), 1, anon_sym_END_VAR, @@ -64991,373 +70176,433 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1431), 2, + STATE(1556), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68030] = 4, - ACTIONS(3884), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68046] = 4, - ACTIONS(3830), 1, - anon_sym_DQUOTE, - STATE(1597), 1, - aux_sym_string_repeat2, - ACTIONS(3890), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68062] = 3, + aux_sym_type_definition_repeat1, + [72972] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_END_VAR, ACTIONS(3892), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, - sym_line_comment, sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [68076] = 3, + STATE(1557), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [72990] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, ACTIONS(3894), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, + anon_sym_END_VAR, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [68090] = 3, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73008] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3890), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73026] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3886), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73044] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3882), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73062] = 4, ACTIONS(3896), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - ACTIONS(1564), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [68104] = 5, - ACTIONS(3322), 1, + [73078] = 4, + ACTIONS(3896), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73094] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3898), 1, + anon_sym_END_VAR, + ACTIONS(3900), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1570), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73112] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(3902), 1, anon_sym_RPAREN, - STATE(1658), 1, + STATE(1853), 1, sym_fb_parameter, - STATE(1762), 1, + STATE(2037), 1, sym_fb_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68122] = 5, - ACTIONS(3326), 1, + [73130] = 5, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(3900), 1, + ACTIONS(3904), 1, anon_sym_RPAREN, - STATE(1596), 1, + STATE(1660), 1, sym_parameter, - STATE(1699), 1, + STATE(1892), 1, sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68140] = 5, - ACTIONS(3027), 1, + [73148] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3902), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68158] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3904), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68176] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, ACTIONS(3906), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68194] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [73166] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3608), 1, sym_block_comment, ACTIONS(3908), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68212] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [73184] = 5, + ACTIONS(3365), 1, sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, ACTIONS(3910), 1, anon_sym_END_VAR, - ACTIONS(3912), 1, - sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1624), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68230] = 4, + aux_sym_type_definition_repeat1, + [73202] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3912), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73220] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3898), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73238] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3854), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73256] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3845), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73274] = 4, ACTIONS(3914), 1, anon_sym_SQUOTE, - STATE(1585), 1, + STATE(1596), 1, aux_sym_string_repeat1, - ACTIONS(3916), 2, + ACTIONS(3652), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68246] = 4, - ACTIONS(3919), 1, + [73290] = 4, + ACTIONS(3914), 1, anon_sym_DQUOTE, - STATE(1586), 1, + STATE(1612), 1, aux_sym_string_repeat2, - ACTIONS(3921), 2, + ACTIONS(3654), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68262] = 5, - ACTIONS(3027), 1, + [73306] = 5, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3924), 1, - anon_sym_END_VAR, - ACTIONS(3926), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1627), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68280] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3928), 1, - anon_sym_END_VAR, - ACTIONS(3930), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1298), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68298] = 4, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(1589), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3935), 2, + ACTIONS(3916), 1, anon_sym_RPAREN, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68314] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3937), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68332] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3910), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68350] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3924), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68368] = 4, - ACTIONS(3942), 1, - anon_sym_RBRACE, - STATE(1593), 1, - aux_sym_attribute_list_repeat1, - ACTIONS(3939), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68384] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3928), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68402] = 4, - ACTIONS(3944), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68418] = 4, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(1430), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3946), 2, - anon_sym_RPAREN, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68434] = 4, - ACTIONS(3944), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68450] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3948), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68468] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(3950), 1, - anon_sym_RPAREN, - STATE(1658), 1, + STATE(1853), 1, sym_fb_parameter, - STATE(1726), 1, + STATE(1965), 1, sym_fb_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68486] = 5, - ACTIONS(3027), 1, + [73324] = 5, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(3067), 1, - anon_sym_END_VAR, - ACTIONS(3069), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1616), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68504] = 5, - ACTIONS(3326), 1, - sym_identifier, - ACTIONS(3952), 1, + ACTIONS(3918), 1, anon_sym_RPAREN, - STATE(1596), 1, + STATE(1660), 1, sym_parameter, - STATE(1670), 1, + STATE(1878), 1, sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68522] = 5, - ACTIONS(3027), 1, + [73342] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3920), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73360] = 4, + ACTIONS(3922), 1, + anon_sym_SQUOTE, + STATE(1794), 1, + aux_sym_string_repeat1, + ACTIONS(3924), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73376] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3926), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73394] = 5, + ACTIONS(3363), 1, + anon_sym_END_VAR, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3367), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1577), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73412] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3928), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73430] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3930), 1, + anon_sym_END_VAR, + ACTIONS(3932), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1581), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73448] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3934), 1, + anon_sym_END_VAR, + ACTIONS(3936), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1582), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73466] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3938), 1, + anon_sym_END_VAR, + ACTIONS(3940), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1583), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73484] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3942), 1, + anon_sym_END_VAR, + ACTIONS(3944), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1584), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73502] = 4, + ACTIONS(3946), 1, + anon_sym_SQUOTE, + STATE(1585), 1, + aux_sym_string_repeat1, + ACTIONS(3948), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73518] = 4, + ACTIONS(3946), 1, + anon_sym_DQUOTE, + STATE(1586), 1, + aux_sym_string_repeat2, + ACTIONS(3950), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73534] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3952), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73552] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3954), 1, anon_sym_END_VAR, @@ -65366,11 +70611,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1620), 2, + STATE(1589), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68540] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [73570] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3958), 1, anon_sym_END_VAR, @@ -65379,11 +70624,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1621), 2, + STATE(1590), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68558] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [73588] = 5, + ACTIONS(3365), 1, sym_identifier, ACTIONS(3962), 1, anon_sym_END_VAR, @@ -65392,2303 +70637,5461 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1497), 2, + STATE(1591), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68576] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [73606] = 5, + ACTIONS(3365), 1, sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, ACTIONS(3966), 1, anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73624] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3962), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73642] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3958), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73660] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3954), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73678] = 4, ACTIONS(3968), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73694] = 4, + ACTIONS(3968), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73710] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(3970), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(1963), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73728] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3972), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1877), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73746] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3974), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73764] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3976), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73782] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3978), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73800] = 4, + ACTIONS(3922), 1, + anon_sym_DQUOTE, + STATE(1800), 1, + aux_sym_string_repeat2, + ACTIONS(3980), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73816] = 4, + ACTIONS(3984), 1, + anon_sym_RBRACE, + STATE(1533), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(3982), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73832] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3986), 1, + anon_sym_END_STRUCT, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73850] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(3990), 1, + anon_sym_END_STRUCT, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73868] = 4, + ACTIONS(3992), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3994), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73884] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3397), 1, + anon_sym_END_VAR, + ACTIONS(3399), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1604), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73902] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3997), 1, + anon_sym_END_VAR, + ACTIONS(3999), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1608), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73920] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4001), 1, + anon_sym_END_VAR, + ACTIONS(4003), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1609), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73938] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4005), 1, + anon_sym_END_VAR, + ACTIONS(4007), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1610), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73956] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4009), 1, + anon_sym_END_VAR, + ACTIONS(4011), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1611), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [73974] = 4, + ACTIONS(4013), 1, + anon_sym_SQUOTE, + STATE(1613), 1, + aux_sym_string_repeat1, + ACTIONS(4015), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [73990] = 4, + ACTIONS(4013), 1, + anon_sym_DQUOTE, + STATE(1614), 1, + aux_sym_string_repeat2, + ACTIONS(4017), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74006] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4019), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74024] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4021), 1, + anon_sym_END_VAR, + ACTIONS(4023), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1617), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74042] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4025), 1, + anon_sym_END_VAR, + ACTIONS(4027), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1618), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74060] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4029), 1, + anon_sym_END_VAR, + ACTIONS(4031), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1619), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74078] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4033), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74096] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4029), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74114] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4025), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74132] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4021), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74150] = 4, + ACTIONS(4035), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(4037), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74166] = 4, + ACTIONS(4040), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74182] = 4, + ACTIONS(4040), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74198] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4042), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(2090), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74216] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4044), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1901), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74234] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4046), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74252] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4048), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74270] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4050), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74288] = 3, + ACTIONS(4052), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [74302] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4054), 1, + anon_sym_END_VAR, + ACTIONS(4056), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1781), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74320] = 5, + ACTIONS(3678), 1, + anon_sym_END_VAR, + ACTIONS(4058), 1, + sym_identifier, + ACTIONS(4061), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68594] = 5, - ACTIONS(63), 1, - anon_sym_SQUOTE, - ACTIONS(65), 1, - anon_sym_DQUOTE, - ACTIONS(3970), 1, + aux_sym_type_definition_repeat1, + [74338] = 5, + ACTIONS(3365), 1, sym_identifier, - STATE(1010), 1, - sym_string, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68612] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3972), 1, + ACTIONS(3417), 1, anon_sym_END_VAR, - ACTIONS(3974), 1, + ACTIONS(3419), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1623), 2, + STATE(1653), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68630] = 4, - ACTIONS(3976), 1, + aux_sym_type_definition_repeat1, + [74356] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4064), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74374] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3453), 1, + anon_sym_END_VAR, + ACTIONS(3455), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1633), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74392] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4066), 1, + anon_sym_END_VAR, + ACTIONS(4068), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1658), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74410] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_END_VAR, + ACTIONS(4072), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1637), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74428] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4074), 1, + anon_sym_END_VAR, + ACTIONS(4076), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1638), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74446] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4078), 1, + anon_sym_END_VAR, + ACTIONS(4080), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1639), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74464] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4082), 1, + anon_sym_END_VAR, + ACTIONS(4084), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1640), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74482] = 4, + ACTIONS(4086), 1, anon_sym_SQUOTE, - STATE(1625), 1, + STATE(1642), 1, aux_sym_string_repeat1, - ACTIONS(3978), 2, + ACTIONS(4088), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68646] = 5, - ACTIONS(41), 1, - anon_sym_SQUOTE, - ACTIONS(43), 1, + [74498] = 4, + ACTIONS(4086), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + STATE(1643), 1, + aux_sym_string_repeat2, + ACTIONS(4090), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [74514] = 5, + ACTIONS(3365), 1, sym_identifier, - STATE(1152), 1, - sym_string, - ACTIONS(3), 3, - sym_line_comment, + ACTIONS(3608), 1, sym_block_comment, - sym_c_style_comment, - [68664] = 3, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3), 3, + ACTIONS(4092), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [68678] = 4, - ACTIONS(3984), 1, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74532] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4094), 1, + anon_sym_END_VAR, + ACTIONS(4096), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1647), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74550] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4098), 1, + anon_sym_END_VAR, + ACTIONS(4100), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1648), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74568] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_END_VAR, + ACTIONS(4104), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1649), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74586] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4106), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74604] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4102), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74622] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4098), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74640] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4094), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74658] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4108), 1, + anon_sym_END_VAR, + ACTIONS(4110), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1659), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74676] = 4, + ACTIONS(4112), 1, anon_sym_SQUOTE, - STATE(1585), 1, + STATE(1596), 1, aux_sym_string_repeat1, - ACTIONS(3312), 2, + ACTIONS(3652), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68694] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3986), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68712] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3908), 1, - anon_sym_END_VAR, - ACTIONS(3988), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1496), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68730] = 4, - ACTIONS(3984), 1, + [74692] = 4, + ACTIONS(4112), 1, anon_sym_DQUOTE, - STATE(1586), 1, + STATE(1612), 1, aux_sym_string_repeat2, - ACTIONS(3314), 2, + ACTIONS(3654), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68746] = 4, - ACTIONS(3976), 1, - anon_sym_DQUOTE, - STATE(1626), 1, - aux_sym_string_repeat2, - ACTIONS(3990), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68762] = 5, - ACTIONS(3027), 1, + [74708] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3992), 1, + ACTIONS(4114), 1, anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68780] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3994), 1, - anon_sym_END_VAR, - ACTIONS(3996), 1, + ACTIONS(4116), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1631), 2, + STATE(1661), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [68798] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [74726] = 5, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(3998), 1, - anon_sym_END_VAR, - ACTIONS(4000), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1296), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68816] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(4002), 1, - anon_sym_END_VAR, - ACTIONS(4004), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1297), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68834] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(4006), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68852] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3994), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68870] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(3998), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68888] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(4002), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68906] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(4008), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68924] = 4, - ACTIONS(4010), 1, - anon_sym_SQUOTE, - STATE(1585), 1, - aux_sym_string_repeat1, - ACTIONS(3312), 2, - aux_sym_string_token1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68940] = 4, - ACTIONS(4010), 1, - anon_sym_DQUOTE, - STATE(1586), 1, - aux_sym_string_repeat2, - ACTIONS(3314), 2, - aux_sym_string_token2, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [68956] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(4012), 1, - anon_sym_END_VAR, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1401), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [68974] = 5, - ACTIONS(3322), 1, - sym_identifier, - ACTIONS(4014), 1, + ACTIONS(4118), 1, anon_sym_RPAREN, - STATE(1658), 1, + STATE(1853), 1, sym_fb_parameter, - STATE(1786), 1, + STATE(1935), 1, sym_fb_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [68992] = 5, - ACTIONS(3326), 1, + [74744] = 5, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4120), 1, anon_sym_RPAREN, - STATE(1596), 1, + STATE(1660), 1, sym_parameter, - STATE(1688), 1, + STATE(1872), 1, sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69010] = 5, - ACTIONS(3027), 1, + [74762] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3087), 1, - anon_sym_END_VAR, - ACTIONS(3089), 1, + ACTIONS(3608), 1, sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1612), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [69028] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3246), 1, - sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(4122), 1, anon_sym_END_VAR, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1401), 2, + STATE(1622), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [69046] = 5, - ACTIONS(3027), 1, + aux_sym_type_definition_repeat1, + [74780] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4124), 1, anon_sym_END_VAR, - ACTIONS(4022), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74798] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4126), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74816] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4128), 1, + anon_sym_END_VAR, + ACTIONS(4130), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1301), 2, + STATE(1663), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [69064] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(4024), 1, - anon_sym_END_VAR, - ACTIONS(4026), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1302), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [69082] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(4028), 1, - anon_sym_END_VAR, - ACTIONS(4030), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1303), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [69100] = 5, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(4032), 1, - anon_sym_END_VAR, - ACTIONS(4034), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - STATE(1329), 2, - sym_var_item, - aux_sym_var_declaration_repeat1, - [69118] = 4, - ACTIONS(4036), 1, + aux_sym_type_definition_repeat1, + [74834] = 4, + ACTIONS(4132), 1, anon_sym_SQUOTE, - STATE(1421), 1, + STATE(1693), 1, aux_sym_string_repeat1, - ACTIONS(4038), 2, + ACTIONS(4134), 2, aux_sym_string_token1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69134] = 4, - ACTIONS(4036), 1, + [74850] = 4, + ACTIONS(4132), 1, anon_sym_DQUOTE, - STATE(1427), 1, + STATE(1694), 1, aux_sym_string_repeat2, - ACTIONS(4040), 2, + ACTIONS(4136), 2, aux_sym_string_token2, anon_sym_DQUOTE_DQUOTE, - ACTIONS(3290), 3, + ACTIONS(3630), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69150] = 5, - ACTIONS(3027), 1, + [74866] = 5, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3260), 1, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4138), 1, anon_sym_END_VAR, - ACTIONS(4042), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74884] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4140), 1, + anon_sym_END_VAR, + ACTIONS(4142), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - STATE(1533), 2, + STATE(1697), 2, sym_var_item, - aux_sym_var_declaration_repeat1, - [69168] = 4, - ACTIONS(41), 1, + aux_sym_type_definition_repeat1, + [74902] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_END_VAR, + ACTIONS(4146), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1698), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74920] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_END_VAR, + ACTIONS(4150), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1699), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74938] = 5, + ACTIONS(67), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(1042), 1, + ACTIONS(4152), 1, + sym_identifier, + STATE(1126), 1, sym_string, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69183] = 4, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(4044), 1, - anon_sym_COLON, - STATE(1757), 1, - sym_attribute_list, + [74956] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4154), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74974] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4148), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [74992] = 4, + ACTIONS(3670), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(4156), 2, + anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69198] = 4, - ACTIONS(63), 1, + [75008] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4144), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75026] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3377), 1, + anon_sym_END_VAR, + ACTIONS(3379), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1670), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75044] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4140), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75062] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4158), 1, + anon_sym_END_VAR, + ACTIONS(4160), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1709), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75080] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_END_VAR, + ACTIONS(4164), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1675), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75098] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4166), 1, + anon_sym_END_VAR, + ACTIONS(4168), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1676), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75116] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4170), 1, + anon_sym_END_VAR, + ACTIONS(4172), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1677), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75134] = 4, + ACTIONS(4174), 1, anon_sym_SQUOTE, - ACTIONS(65), 1, + STATE(1678), 1, + aux_sym_string_repeat1, + ACTIONS(4176), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75150] = 4, + ACTIONS(4174), 1, anon_sym_DQUOTE, - STATE(1007), 1, - sym_string, + STATE(1679), 1, + aux_sym_string_repeat2, + ACTIONS(4178), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75166] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4180), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75184] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4182), 1, + anon_sym_END_VAR, + ACTIONS(4184), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1681), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75202] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4186), 1, + anon_sym_END_VAR, + ACTIONS(4188), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1682), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75220] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_END_VAR, + ACTIONS(4192), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1683), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75238] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4194), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75256] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4190), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75274] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4186), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75292] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4182), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75310] = 4, + ACTIONS(4196), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75326] = 4, + ACTIONS(4196), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75342] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4198), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1882), 1, + sym_parameter_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69213] = 3, - ACTIONS(4046), 1, + [75360] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4200), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75378] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4202), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75396] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4204), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75414] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3443), 1, + anon_sym_END_VAR, + ACTIONS(3445), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1687), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75432] = 4, + ACTIONS(4206), 1, + anon_sym_SQUOTE, + STATE(1688), 1, + aux_sym_string_repeat1, + ACTIONS(4208), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75448] = 4, + ACTIONS(4206), 1, + anon_sym_DQUOTE, + STATE(1689), 1, + aux_sym_string_repeat2, + ACTIONS(4210), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75464] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4212), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75482] = 4, + ACTIONS(4214), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75498] = 4, + ACTIONS(4214), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75514] = 3, + ACTIONS(4216), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, anon_sym_LBRACK, - ACTIONS(2874), 2, + anon_sym_DOT, + [75528] = 3, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75542] = 3, + ACTIONS(4220), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75556] = 4, + ACTIONS(4222), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75572] = 4, + ACTIONS(4222), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75588] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4224), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(2062), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75606] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4226), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1898), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [75624] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4228), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75642] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4230), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75660] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4232), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75678] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4234), 1, + anon_sym_END_VAR, + ACTIONS(4236), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1517), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75696] = 3, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75710] = 3, + ACTIONS(4240), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75724] = 3, + ACTIONS(4242), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75738] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4244), 1, + anon_sym_END_VAR, + ACTIONS(4246), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1826), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75756] = 3, + ACTIONS(4248), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75770] = 3, + ACTIONS(4250), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75784] = 3, + ACTIONS(4252), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75798] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4254), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75816] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4256), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75834] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3433), 1, + anon_sym_END_VAR, + ACTIONS(3435), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1762), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75852] = 3, + ACTIONS(4258), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75866] = 3, + ACTIONS(4260), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75880] = 3, + ACTIONS(4262), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75894] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(4264), 1, + anon_sym_END_STRUCT, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75912] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4266), 1, + anon_sym_END_VAR, + ACTIONS(4268), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1772), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75930] = 3, + ACTIONS(4270), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75944] = 3, + ACTIONS(4272), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75958] = 3, + ACTIONS(4274), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [75972] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4234), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [75990] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3503), 1, + anon_sym_END_VAR, + ACTIONS(3505), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1733), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76008] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(4264), 1, + anon_sym_END_STRUCT, + ACTIONS(4276), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1792), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76026] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4278), 1, + anon_sym_END_VAR, + ACTIONS(4280), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1774), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76044] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4282), 1, + anon_sym_END_VAR, + ACTIONS(4284), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1740), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76062] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4286), 1, + anon_sym_END_VAR, + ACTIONS(4288), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1741), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76080] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4290), 1, + anon_sym_END_VAR, + ACTIONS(4292), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1743), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76098] = 3, + ACTIONS(4294), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76112] = 3, + ACTIONS(4296), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76126] = 3, + ACTIONS(4298), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76140] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4300), 1, + anon_sym_END_VAR, + ACTIONS(4302), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1744), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76158] = 4, + ACTIONS(4304), 1, + anon_sym_SQUOTE, + STATE(1748), 1, + aux_sym_string_repeat1, + ACTIONS(4306), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76174] = 4, + ACTIONS(4304), 1, + anon_sym_DQUOTE, + STATE(1749), 1, + aux_sym_string_repeat2, + ACTIONS(4308), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76190] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4310), 1, + sym_identifier, + STATE(1497), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76208] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4312), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76226] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4314), 1, + anon_sym_END_VAR, + ACTIONS(4316), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1752), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76244] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4318), 1, + anon_sym_END_VAR, + ACTIONS(4320), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1753), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76262] = 3, + ACTIONS(4322), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76276] = 3, + ACTIONS(4324), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76290] = 3, + ACTIONS(4326), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76304] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4328), 1, + anon_sym_END_VAR, + ACTIONS(4330), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1757), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76322] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4332), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76340] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4328), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76358] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(4334), 1, + anon_sym_END_STRUCT, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76376] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4318), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76394] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4314), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76412] = 3, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76426] = 3, + ACTIONS(4338), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76440] = 3, + ACTIONS(4340), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76454] = 4, + ACTIONS(4342), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76470] = 4, + ACTIONS(4342), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76486] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4344), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(1948), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76504] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4346), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1874), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76522] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4348), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76540] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4350), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76558] = 3, + ACTIONS(4352), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76572] = 3, + ACTIONS(4354), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76586] = 3, + ACTIONS(4356), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76600] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4358), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76618] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4360), 1, + anon_sym_END_VAR, + ACTIONS(4362), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1785), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76636] = 4, + ACTIONS(4364), 1, + anon_sym_SQUOTE, + STATE(1811), 1, + aux_sym_string_repeat1, + ACTIONS(4366), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76652] = 4, + ACTIONS(4370), 1, + anon_sym_RBRACE, + STATE(1593), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(4368), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76668] = 4, + ACTIONS(4364), 1, + anon_sym_DQUOTE, + STATE(1820), 1, + aux_sym_string_repeat2, + ACTIONS(4372), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76684] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4374), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76702] = 3, + ACTIONS(4376), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76716] = 3, + ACTIONS(4378), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76730] = 3, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76744] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4382), 1, + anon_sym_END_VAR, + ACTIONS(4384), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1828), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76762] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4386), 1, + anon_sym_END_VAR, + ACTIONS(4388), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1829), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76780] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4390), 1, + anon_sym_END_VAR, + ACTIONS(4392), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1445), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76798] = 3, + ACTIONS(4394), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76812] = 3, + ACTIONS(4396), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76826] = 3, + ACTIONS(4398), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76840] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4400), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76858] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4402), 1, + sym_identifier, + STATE(1131), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76876] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4390), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76894] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(4334), 1, + anon_sym_END_STRUCT, + ACTIONS(4404), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1594), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76912] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4406), 1, + sym_identifier, + STATE(1248), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [76930] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4386), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [76948] = 3, + ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76962] = 3, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76976] = 3, + ACTIONS(4412), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [76990] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3817), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77008] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4414), 1, + sym_identifier, + STATE(1443), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77026] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3407), 1, + anon_sym_END_VAR, + ACTIONS(3409), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1806), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77044] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3463), 1, + anon_sym_END_VAR, + ACTIONS(3465), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1796), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77062] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4382), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77080] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4416), 1, + anon_sym_END_VAR, + ACTIONS(4418), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1802), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77098] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4420), 1, + anon_sym_END_VAR, + ACTIONS(4422), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1803), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77116] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3843), 1, + anon_sym_END_VAR, + ACTIONS(4424), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1624), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77134] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4426), 1, + anon_sym_END_VAR, + ACTIONS(4428), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1804), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77152] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4430), 1, + sym_identifier, + STATE(1282), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77170] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4432), 1, + anon_sym_END_VAR, + ACTIONS(4434), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1805), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77188] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(4436), 1, + anon_sym_END_STRUCT, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77206] = 4, + ACTIONS(4438), 1, + anon_sym_SQUOTE, + STATE(1809), 1, + aux_sym_string_repeat1, + ACTIONS(4440), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77222] = 4, + ACTIONS(4442), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77238] = 4, + ACTIONS(4438), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + aux_sym_string_repeat2, + ACTIONS(4444), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77254] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4446), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77272] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4448), 1, + anon_sym_END_VAR, + ACTIONS(4450), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1815), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77290] = 5, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(4452), 1, + sym_identifier, + STATE(1284), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77308] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4454), 1, + anon_sym_END_VAR, + ACTIONS(4456), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1818), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77326] = 4, + ACTIONS(4442), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77342] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4458), 1, + anon_sym_END_VAR, + ACTIONS(4460), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1819), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77360] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4462), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77378] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4458), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77396] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4454), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77414] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4448), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77432] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4464), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77450] = 5, + ACTIONS(67), 1, + anon_sym_SQUOTE, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(4466), 1, + sym_identifier, + STATE(1125), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77468] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(4468), 1, + anon_sym_END_STRUCT, + ACTIONS(4470), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1824), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77486] = 4, + ACTIONS(4472), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77502] = 4, + ACTIONS(4472), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77518] = 4, + ACTIONS(4474), 1, + anon_sym_SQUOTE, + STATE(1596), 1, + aux_sym_string_repeat1, + ACTIONS(3652), 2, + aux_sym_string_token1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77534] = 3, + ACTIONS(4476), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [77548] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4478), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(2085), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77566] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4480), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1863), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77584] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4482), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77602] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4484), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(2039), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77620] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4486), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1876), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77638] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4488), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77656] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4490), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77674] = 4, + ACTIONS(4474), 1, + anon_sym_DQUOTE, + STATE(1612), 1, + aux_sym_string_repeat2, + ACTIONS(3654), 2, + aux_sym_string_token2, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3630), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77690] = 5, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(4492), 1, + anon_sym_RPAREN, + STATE(1853), 1, + sym_fb_parameter, + STATE(1998), 1, + sym_fb_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77708] = 3, + ACTIONS(4494), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1721), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [77722] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(4496), 1, + anon_sym_END_STRUCT, + ACTIONS(4498), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1742), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77740] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(3988), 1, + sym_block_comment, + ACTIONS(4500), 1, + anon_sym_END_STRUCT, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1470), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77758] = 5, + ACTIONS(3745), 1, + sym_identifier, + ACTIONS(4500), 1, + anon_sym_END_STRUCT, + ACTIONS(4502), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1595), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77776] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(3761), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77794] = 5, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(4504), 1, + anon_sym_RPAREN, + STATE(1660), 1, + sym_parameter, + STATE(1879), 1, + sym_parameter_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77812] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4506), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77830] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3608), 1, + sym_block_comment, + ACTIONS(4508), 1, + anon_sym_END_VAR, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1622), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77848] = 5, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(4510), 1, + anon_sym_END_VAR, + ACTIONS(4512), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + STATE(1674), 2, + sym_var_item, + aux_sym_type_definition_repeat1, + [77866] = 4, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + STATE(1224), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77881] = 4, + ACTIONS(3751), 1, + anon_sym_RBRACE, + ACTIONS(4514), 1, + sym_identifier, + STATE(1851), 1, + sym_attribute, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77896] = 2, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(4516), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + [77907] = 4, + ACTIONS(4518), 1, + anon_sym_COLON_EQ, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77922] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4524), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77937] = 2, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3689), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + [77948] = 3, + ACTIONS(4526), 1, + anon_sym_LBRACK, + ACTIONS(3196), 2, anon_sym_SEMI, anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69226] = 4, - ACTIONS(27), 1, + [77961] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4528), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77976] = 4, + ACTIONS(4530), 1, + anon_sym_COMMA, + ACTIONS(4533), 1, + anon_sym_RPAREN, + STATE(1839), 1, + aux_sym_fb_parameter_list_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [77991] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4535), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78006] = 4, + ACTIONS(31), 1, anon_sym_POUND, - ACTIONS(4048), 1, + ACTIONS(4537), 1, sym_identifier, - STATE(246), 1, + STATE(285), 1, sym_prefixed_identifier, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69241] = 4, - ACTIONS(4050), 1, - anon_sym_RBRACE, - ACTIONS(4052), 1, - sym_identifier, - STATE(1654), 1, - sym_attribute, + [78021] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4539), 1, + anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69256] = 4, - ACTIONS(3642), 1, - anon_sym_RBRACE, - ACTIONS(4052), 1, - sym_identifier, - STATE(1654), 1, - sym_attribute, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69271] = 4, - ACTIONS(41), 1, + [78036] = 4, + ACTIONS(45), 1, anon_sym_SQUOTE, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - STATE(1053), 1, + STATE(1215), 1, sym_string, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69286] = 4, - ACTIONS(4054), 1, - anon_sym_COLON_EQ, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69301] = 4, - ACTIONS(4060), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_RPAREN, - STATE(1648), 1, - aux_sym_fb_parameter_list_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69316] = 2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(3935), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - [69327] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4065), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69342] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4067), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69357] = 2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(4069), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - [69368] = 2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(4071), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - [69379] = 2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(3942), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - [69390] = 4, - ACTIONS(4052), 1, - sym_identifier, - ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(1654), 1, - sym_attribute, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69405] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4075), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69420] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69435] = 4, - ACTIONS(4079), 1, - anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_fb_parameter_list_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69450] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4083), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69465] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4085), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69480] = 4, - ACTIONS(4079), 1, - anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_RPAREN, - STATE(1648), 1, - aux_sym_fb_parameter_list_repeat1, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69495] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4089), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69510] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69525] = 2, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - ACTIONS(1568), 3, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - [69536] = 4, - ACTIONS(3568), 1, - anon_sym_RBRACE, - ACTIONS(4052), 1, - sym_identifier, - STATE(1654), 1, - sym_attribute, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69551] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4093), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69566] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4095), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69581] = 4, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(4097), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69596] = 3, - ACTIONS(4052), 1, - sym_identifier, - STATE(1330), 1, - sym_attribute, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69608] = 3, - ACTIONS(4099), 1, - anon_sym_RPAREN, - ACTIONS(4101), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69620] = 2, - ACTIONS(2884), 2, - anon_sym_SEMI, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69630] = 3, - ACTIONS(4103), 1, - anon_sym_SEMI, - ACTIONS(4105), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69642] = 3, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69654] = 3, - ACTIONS(4107), 1, - anon_sym_RPAREN, - ACTIONS(4109), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69666] = 3, - ACTIONS(4111), 1, - anon_sym_RPAREN, - ACTIONS(4113), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69678] = 3, - ACTIONS(4115), 1, + [78051] = 4, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, anon_sym_COLON, - ACTIONS(4117), 1, - anon_sym_DOT_DOT, + STATE(2071), 1, + sym_attribute_list, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69690] = 3, - ACTIONS(4119), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69702] = 3, - ACTIONS(3322), 1, + [78066] = 4, + ACTIONS(3984), 1, + anon_sym_RBRACE, + ACTIONS(4514), 1, sym_identifier, - STATE(1686), 1, - sym_fb_parameter, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69714] = 3, - ACTIONS(4123), 1, - anon_sym_RPAREN, - ACTIONS(4125), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69726] = 3, - ACTIONS(4129), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(4127), 2, - anon_sym_END_VAR, - sym_identifier, - [69738] = 3, - ACTIONS(4131), 1, - anon_sym_RPAREN, - ACTIONS(4133), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69750] = 3, - ACTIONS(4137), 1, - sym_block_comment, - ACTIONS(3), 2, - sym_line_comment, - sym_c_style_comment, - ACTIONS(4135), 2, - anon_sym_END_VAR, - sym_identifier, - [69762] = 3, - ACTIONS(4052), 1, - sym_identifier, - STATE(1295), 1, + STATE(1851), 1, sym_attribute, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69774] = 3, - ACTIONS(4141), 1, - sym_block_comment, - ACTIONS(3), 2, + [78081] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4543), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, sym_line_comment, + sym_block_comment, sym_c_style_comment, - ACTIONS(4139), 2, - anon_sym_END_VAR, + [78096] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4545), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78111] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4547), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78126] = 4, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(4549), 1, + anon_sym_COLON, + STATE(1991), 1, + sym_attribute_list, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78141] = 4, + ACTIONS(4514), 1, sym_identifier, - [69786] = 2, - ACTIONS(2874), 2, + ACTIONS(4551), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_attribute, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78156] = 2, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(3852), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + [78167] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4553), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78182] = 4, + ACTIONS(4555), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, + anon_sym_RPAREN, + STATE(1862), 1, + aux_sym_fb_parameter_list_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78197] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4559), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78212] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78227] = 2, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(1725), 3, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + [78238] = 4, + ACTIONS(4514), 1, + sym_identifier, + ACTIONS(4563), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_attribute, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78253] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4565), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78268] = 2, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + ACTIONS(4567), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + [78279] = 4, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78294] = 4, + ACTIONS(67), 1, + anon_sym_SQUOTE, + ACTIONS(69), 1, + anon_sym_DQUOTE, + STATE(1123), 1, + sym_string, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78309] = 4, + ACTIONS(4555), 1, + anon_sym_COMMA, + ACTIONS(4571), 1, + anon_sym_RPAREN, + STATE(1839), 1, + aux_sym_fb_parameter_list_repeat1, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78324] = 3, + ACTIONS(4573), 1, + anon_sym_RPAREN, + ACTIONS(4575), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78336] = 2, + ACTIONS(3196), 2, anon_sym_SEMI, anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69796] = 2, - ACTIONS(4063), 2, + [78346] = 3, + ACTIONS(4577), 1, + anon_sym_SEMI, + ACTIONS(4579), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78358] = 3, + ACTIONS(4514), 1, + sym_identifier, + STATE(1851), 1, + sym_attribute, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78370] = 3, + ACTIONS(4581), 1, + anon_sym_COLON_EQ, + ACTIONS(4583), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78382] = 3, + ACTIONS(4585), 1, + anon_sym_RPAREN, + ACTIONS(4587), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78394] = 3, + ACTIONS(4589), 1, + anon_sym_VERSION, + ACTIONS(4591), 1, + anon_sym_STRUCT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78406] = 3, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78418] = 3, + ACTIONS(4595), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(4593), 2, + anon_sym_END_STRUCT, + sym_identifier, + [78430] = 3, + ACTIONS(4597), 1, + anon_sym_RPAREN, + ACTIONS(4599), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78442] = 3, + ACTIONS(4603), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(4601), 2, + anon_sym_END_STRUCT, + sym_identifier, + [78454] = 3, + ACTIONS(4605), 1, + anon_sym_RPAREN, + ACTIONS(4607), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78466] = 2, + ACTIONS(3234), 2, + anon_sym_SEMI, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78476] = 3, + ACTIONS(4609), 1, + anon_sym_RPAREN, + ACTIONS(4611), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78488] = 3, + ACTIONS(4613), 1, + anon_sym_RPAREN, + ACTIONS(4615), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78500] = 3, + ACTIONS(4617), 1, + anon_sym_RPAREN, + ACTIONS(4619), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78512] = 3, + ACTIONS(4621), 1, + anon_sym_RPAREN, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78524] = 3, + ACTIONS(4627), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(4625), 2, + anon_sym_END_VAR, + sym_identifier, + [78536] = 2, + ACTIONS(4533), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69806] = 3, - ACTIONS(4143), 1, + [78546] = 3, + ACTIONS(4629), 1, anon_sym_RPAREN, - ACTIONS(4145), 1, + ACTIONS(4631), 1, anon_sym_EQ_GT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69818] = 3, - ACTIONS(4147), 1, - anon_sym_RPAREN, - ACTIONS(4149), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69830] = 2, - ACTIONS(4151), 2, - anon_sym_COLON_EQ, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69840] = 3, - ACTIONS(4153), 1, - anon_sym_SEMI, - ACTIONS(4155), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69852] = 2, - ACTIONS(2900), 2, + [78558] = 2, + ACTIONS(3222), 2, anon_sym_SEMI, anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69862] = 3, - ACTIONS(4157), 1, - anon_sym_RPAREN, - ACTIONS(4159), 1, - anon_sym_EQ_GT, + [78568] = 3, + ACTIONS(4633), 1, + anon_sym_SEMI, + ACTIONS(4635), 1, + anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69874] = 3, - ACTIONS(4163), 1, + [78580] = 3, + ACTIONS(4637), 1, + anon_sym_SEMI, + ACTIONS(4639), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78592] = 3, + ACTIONS(4627), 1, sym_block_comment, ACTIONS(3), 2, sym_line_comment, sym_c_style_comment, - ACTIONS(4161), 2, - anon_sym_END_VAR, + ACTIONS(4625), 2, + anon_sym_END_STRUCT, sym_identifier, - [69886] = 3, - ACTIONS(4165), 1, + [78604] = 3, + ACTIONS(4641), 1, anon_sym_RPAREN, - ACTIONS(4167), 1, + ACTIONS(4643), 1, anon_sym_EQ_GT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69898] = 3, - ACTIONS(4169), 1, - anon_sym_RPAREN, - ACTIONS(4171), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69910] = 3, - ACTIONS(4151), 1, - anon_sym_EQ_GT, - ACTIONS(4173), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69922] = 3, - ACTIONS(4175), 1, - anon_sym_RPAREN, - ACTIONS(4177), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69934] = 3, - ACTIONS(4052), 1, + [78616] = 3, + ACTIONS(3662), 1, sym_identifier, - STATE(1654), 1, - sym_attribute, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69946] = 3, - ACTIONS(4179), 1, - anon_sym_RPAREN, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [69958] = 3, - ACTIONS(3326), 1, - sym_identifier, - STATE(1649), 1, + STATE(1836), 1, sym_parameter, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69970] = 2, - ACTIONS(4183), 1, + [78628] = 3, + ACTIONS(4514), 1, sym_identifier, + STATE(1469), 1, + sym_attribute, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [69979] = 2, - ACTIONS(4185), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, + [78640] = 3, + ACTIONS(4647), 1, sym_block_comment, - sym_c_style_comment, - [69988] = 2, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - [69997] = 2, - ACTIONS(4189), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70006] = 2, - ACTIONS(4191), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70015] = 2, - ACTIONS(4193), 1, - anon_sym_OF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70024] = 2, - ACTIONS(3195), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70033] = 2, - ACTIONS(3231), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70042] = 2, - ACTIONS(4195), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70051] = 2, - ACTIONS(4197), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70060] = 2, - ACTIONS(3193), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70069] = 2, - ACTIONS(4199), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70078] = 2, - ACTIONS(4201), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70087] = 2, - ACTIONS(4203), 1, + ACTIONS(4645), 2, + anon_sym_END_VAR, sym_identifier, - ACTIONS(3), 3, - sym_line_comment, + [78652] = 3, + ACTIONS(4595), 1, sym_block_comment, - sym_c_style_comment, - [70096] = 2, - ACTIONS(4205), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - [70105] = 2, - ACTIONS(4207), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70114] = 2, - ACTIONS(4209), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70123] = 2, - ACTIONS(3171), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70132] = 2, - ACTIONS(4211), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70141] = 2, - ACTIONS(4213), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70150] = 2, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70159] = 2, - ACTIONS(4217), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70168] = 2, - ACTIONS(4219), 1, - anon_sym_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70177] = 2, - ACTIONS(4221), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70186] = 2, - ACTIONS(4223), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70195] = 2, - ACTIONS(4225), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70204] = 2, - ACTIONS(4227), 1, + ACTIONS(4593), 2, + anon_sym_END_VAR, sym_identifier, + [78664] = 3, + ACTIONS(4649), 1, + anon_sym_RPAREN, + ACTIONS(4651), 1, + anon_sym_EQ_GT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70213] = 2, - ACTIONS(4229), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70222] = 2, - ACTIONS(4231), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70231] = 2, - ACTIONS(4233), 1, + [78676] = 3, + ACTIONS(4653), 1, anon_sym_COLON, + ACTIONS(4655), 1, + anon_sym_DOT_DOT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70240] = 2, - ACTIONS(3225), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, + [78688] = 3, + ACTIONS(4647), 1, sym_block_comment, - sym_c_style_comment, - [70249] = 2, - ACTIONS(4235), 1, - sym_number, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_line_comment, - sym_block_comment, sym_c_style_comment, - [70258] = 2, - ACTIONS(4115), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70267] = 2, - ACTIONS(4237), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70276] = 2, - ACTIONS(4239), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70285] = 2, - ACTIONS(3223), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70294] = 2, - ACTIONS(4241), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70303] = 2, - ACTIONS(4243), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70312] = 2, - ACTIONS(3217), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70321] = 2, - ACTIONS(4245), 1, + ACTIONS(4645), 2, + anon_sym_END_STRUCT, sym_identifier, + [78700] = 2, + ACTIONS(4583), 2, + anon_sym_COLON_EQ, + anon_sym_EQ_GT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70330] = 2, - ACTIONS(4247), 1, + [78710] = 3, + ACTIONS(4657), 1, + anon_sym_SEMI, + ACTIONS(4659), 1, anon_sym_COLON_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70339] = 2, - ACTIONS(3213), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70348] = 2, - ACTIONS(4249), 1, + [78722] = 3, + ACTIONS(3658), 1, sym_identifier, + STATE(1881), 1, + sym_fb_parameter, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70357] = 2, - ACTIONS(4251), 1, + [78734] = 3, + ACTIONS(4661), 1, + anon_sym_RPAREN, + ACTIONS(4663), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78746] = 3, + ACTIONS(4514), 1, + sym_identifier, + STATE(1760), 1, + sym_attribute, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78758] = 3, + ACTIONS(4603), 1, + sym_block_comment, + ACTIONS(3), 2, + sym_line_comment, + sym_c_style_comment, + ACTIONS(4601), 2, + anon_sym_END_VAR, + sym_identifier, + [78770] = 3, + ACTIONS(4665), 1, + anon_sym_RPAREN, + ACTIONS(4667), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78782] = 3, + ACTIONS(4669), 1, + anon_sym_VERSION, + ACTIONS(4671), 1, + anon_sym_STRUCT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78794] = 3, + ACTIONS(4673), 1, + anon_sym_RPAREN, + ACTIONS(4675), 1, + anon_sym_EQ_GT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78806] = 2, + ACTIONS(4677), 1, sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70366] = 2, - ACTIONS(4253), 1, + [78815] = 2, + ACTIONS(3537), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78824] = 2, + ACTIONS(3755), 1, + anon_sym_STRUCT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78833] = 2, + ACTIONS(4679), 1, anon_sym_END_CASE, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70375] = 2, - ACTIONS(4255), 1, + [78842] = 2, + ACTIONS(3567), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78851] = 2, + ACTIONS(4681), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70384] = 2, - ACTIONS(4257), 1, + [78860] = 2, + ACTIONS(4683), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78869] = 2, + ACTIONS(4685), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78878] = 2, + ACTIONS(3284), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78887] = 2, + ACTIONS(4687), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78896] = 2, + ACTIONS(4689), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78905] = 2, + ACTIONS(4691), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78914] = 2, + ACTIONS(4693), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78923] = 2, + ACTIONS(4695), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78932] = 2, + ACTIONS(3575), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78941] = 2, + ACTIONS(4697), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78950] = 2, + ACTIONS(4699), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78959] = 2, + ACTIONS(4701), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78968] = 2, + ACTIONS(4703), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78977] = 2, + ACTIONS(4705), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78986] = 2, + ACTIONS(4707), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [78995] = 2, + ACTIONS(4709), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79004] = 2, + ACTIONS(4711), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79013] = 2, + ACTIONS(4713), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79022] = 2, + ACTIONS(4715), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79031] = 2, + ACTIONS(4717), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79040] = 2, + ACTIONS(4719), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79049] = 2, + ACTIONS(3531), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79058] = 2, + ACTIONS(4721), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79067] = 2, + ACTIONS(4723), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79076] = 2, + ACTIONS(4725), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79085] = 2, + ACTIONS(4727), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79094] = 2, + ACTIONS(4729), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79103] = 2, + ACTIONS(4731), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79112] = 2, + ACTIONS(4733), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79121] = 2, + ACTIONS(3563), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79130] = 2, + ACTIONS(4735), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79139] = 2, + ACTIONS(4737), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79148] = 2, + ACTIONS(4739), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79157] = 2, + ACTIONS(4741), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79166] = 2, + ACTIONS(4743), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79175] = 2, + ACTIONS(4745), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79184] = 2, + ACTIONS(4747), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79193] = 2, + ACTIONS(4749), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79202] = 2, + ACTIONS(4751), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79211] = 2, + ACTIONS(4753), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79220] = 2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79229] = 2, + ACTIONS(4757), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79238] = 2, + ACTIONS(3581), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79247] = 2, + ACTIONS(4759), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79256] = 2, + ACTIONS(4761), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79265] = 2, + ACTIONS(3521), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79274] = 2, + ACTIONS(4763), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79283] = 2, + ACTIONS(4765), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79292] = 2, + ACTIONS(4767), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79301] = 2, + ACTIONS(4769), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79310] = 2, + ACTIONS(4771), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79319] = 2, + ACTIONS(4773), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79328] = 2, + ACTIONS(4775), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79337] = 2, + ACTIONS(4777), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79346] = 2, + ACTIONS(4779), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79355] = 2, + ACTIONS(4781), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79364] = 2, + ACTIONS(4783), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79373] = 2, + ACTIONS(4785), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79382] = 2, + ACTIONS(3543), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79391] = 2, + ACTIONS(3533), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79400] = 2, + ACTIONS(4787), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79409] = 2, + ACTIONS(4789), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79418] = 2, + ACTIONS(4791), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79427] = 2, + ACTIONS(4793), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79436] = 2, + ACTIONS(4795), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79445] = 2, + ACTIONS(4797), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79454] = 2, + ACTIONS(4799), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79463] = 2, + ACTIONS(4801), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79472] = 2, + ACTIONS(4803), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79481] = 2, + ACTIONS(4805), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79490] = 2, + ACTIONS(4807), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79499] = 2, + ACTIONS(3535), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79508] = 2, + ACTIONS(4809), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79517] = 2, + ACTIONS(4811), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79526] = 2, + ACTIONS(4813), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79535] = 2, + ACTIONS(3304), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79544] = 2, + ACTIONS(4815), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79553] = 2, + ACTIONS(3547), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79562] = 2, + ACTIONS(3555), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79571] = 2, + ACTIONS(4817), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79580] = 2, + ACTIONS(4819), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79589] = 2, + ACTIONS(4821), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79598] = 2, + ACTIONS(4823), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79607] = 2, + ACTIONS(4825), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79616] = 2, + ACTIONS(4827), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79625] = 2, + ACTIONS(4829), 1, ts_builtin_sym_end, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70393] = 2, - ACTIONS(4259), 1, + [79634] = 2, + ACTIONS(4831), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79643] = 2, + ACTIONS(4833), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79652] = 2, + ACTIONS(4835), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79661] = 2, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79670] = 2, + ACTIONS(4839), 1, sym_identifier, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70402] = 2, - ACTIONS(4261), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70411] = 2, - ACTIONS(3229), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70420] = 2, - ACTIONS(4263), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70429] = 2, - ACTIONS(3209), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70438] = 2, - ACTIONS(4265), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70447] = 2, - ACTIONS(4267), 1, + [79679] = 2, + ACTIONS(4841), 1, anon_sym_COLON, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70456] = 2, - ACTIONS(3197), 1, + [79688] = 2, + ACTIONS(3577), 1, anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70465] = 2, - ACTIONS(4269), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70474] = 2, - ACTIONS(4271), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70483] = 2, - ACTIONS(4273), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70492] = 2, - ACTIONS(4275), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70501] = 2, - ACTIONS(4277), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70510] = 2, - ACTIONS(4279), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70519] = 2, - ACTIONS(4281), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70528] = 2, - ACTIONS(4283), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70537] = 2, - ACTIONS(4285), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70546] = 2, - ACTIONS(4287), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70555] = 2, - ACTIONS(4289), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70564] = 2, - ACTIONS(4291), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70573] = 2, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70582] = 2, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70591] = 2, - ACTIONS(3227), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70600] = 2, - ACTIONS(3185), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70609] = 2, - ACTIONS(4297), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70618] = 2, - ACTIONS(3157), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70627] = 2, - ACTIONS(4299), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70636] = 2, - ACTIONS(4301), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70645] = 2, - ACTIONS(4303), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70654] = 2, - ACTIONS(4305), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70663] = 2, - ACTIONS(4307), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70672] = 2, - ACTIONS(4309), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70681] = 2, - ACTIONS(3207), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70690] = 2, - ACTIONS(4311), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70699] = 2, - ACTIONS(4313), 1, + [79697] = 2, + ACTIONS(4843), 1, anon_sym_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70708] = 2, - ACTIONS(4315), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70717] = 2, - ACTIONS(4317), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70726] = 2, - ACTIONS(4319), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70735] = 2, - ACTIONS(4321), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70744] = 2, - ACTIONS(4323), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70753] = 2, - ACTIONS(4325), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70762] = 2, - ACTIONS(4327), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70771] = 2, - ACTIONS(4329), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70780] = 2, - ACTIONS(4331), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70789] = 2, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70798] = 2, - ACTIONS(4335), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70807] = 2, - ACTIONS(3189), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70816] = 2, - ACTIONS(4337), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70825] = 2, - ACTIONS(4339), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70834] = 2, - ACTIONS(3203), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70843] = 2, - ACTIONS(4341), 1, + [79706] = 2, + ACTIONS(4845), 1, sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70852] = 2, - ACTIONS(4343), 1, - sym_number, + [79715] = 2, + ACTIONS(4847), 1, + anon_sym_STRUCT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70861] = 2, - ACTIONS(4345), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70870] = 2, - ACTIONS(4347), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70879] = 2, - ACTIONS(4349), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70888] = 2, - ACTIONS(4351), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70897] = 2, - ACTIONS(4353), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70906] = 2, - ACTIONS(4355), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70915] = 2, - ACTIONS(4357), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70924] = 2, - ACTIONS(4359), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70933] = 2, - ACTIONS(4361), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70942] = 2, - ACTIONS(3211), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70951] = 2, - ACTIONS(4363), 1, + [79724] = 2, + ACTIONS(4849), 1, anon_sym_EQ, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70960] = 2, - ACTIONS(4365), 1, - anon_sym_RBRACK, + [79733] = 2, + ACTIONS(4591), 1, + anon_sym_STRUCT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70969] = 2, - ACTIONS(4367), 1, + [79742] = 2, + ACTIONS(4851), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79751] = 2, + ACTIONS(4853), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79760] = 2, + ACTIONS(4855), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79769] = 2, + ACTIONS(4857), 1, sym_identifier, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70978] = 2, - ACTIONS(4369), 1, + [79778] = 2, + ACTIONS(4859), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [70987] = 2, - ACTIONS(4371), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [70996] = 2, - ACTIONS(4373), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71005] = 2, - ACTIONS(4375), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71014] = 2, - ACTIONS(4377), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71023] = 2, - ACTIONS(4379), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71032] = 2, - ACTIONS(4381), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71041] = 2, - ACTIONS(4383), 1, + [79787] = 2, + ACTIONS(4861), 1, anon_sym_COLON, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71050] = 2, - ACTIONS(4385), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71059] = 2, - ACTIONS(4387), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71068] = 2, - ACTIONS(4389), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71077] = 2, - ACTIONS(4391), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71086] = 2, - ACTIONS(4393), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71095] = 2, - ACTIONS(4395), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71104] = 2, - ACTIONS(4397), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71113] = 2, - ACTIONS(4399), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71122] = 2, - ACTIONS(4401), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71131] = 2, - ACTIONS(4403), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71140] = 2, - ACTIONS(4405), 1, - anon_sym_COLON, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71149] = 2, - ACTIONS(3233), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71158] = 2, - ACTIONS(3179), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71167] = 2, - ACTIONS(4407), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71176] = 2, - ACTIONS(3173), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71185] = 2, - ACTIONS(4409), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71194] = 2, - ACTIONS(4411), 1, - anon_sym_LBRACK, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71203] = 2, - ACTIONS(4413), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71212] = 2, - ACTIONS(3191), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71221] = 2, - ACTIONS(4415), 1, - sym_identifier, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71230] = 2, - ACTIONS(4417), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71239] = 2, - ACTIONS(3199), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71248] = 2, - ACTIONS(4419), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71257] = 2, - ACTIONS(4421), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71266] = 2, - ACTIONS(4423), 1, - anon_sym_END_CASE, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71275] = 2, - ACTIONS(4425), 1, - sym_number, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71284] = 2, - ACTIONS(4427), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71293] = 2, - ACTIONS(4429), 1, + [79796] = 2, + ACTIONS(4863), 1, anon_sym_OF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71302] = 2, - ACTIONS(4431), 1, - anon_sym_END_IF, + [79805] = 2, + ACTIONS(4865), 1, + anon_sym_END_CASE, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71311] = 2, - ACTIONS(4433), 1, - sym_identifier, + [79814] = 2, + ACTIONS(4867), 1, + sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71320] = 2, - ACTIONS(4435), 1, - anon_sym_END_IF, + [79823] = 2, + ACTIONS(3232), 1, + anon_sym_BEGIN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71329] = 2, - ACTIONS(3221), 1, - anon_sym_END_IF, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71338] = 2, - ACTIONS(4437), 1, + [79832] = 2, + ACTIONS(4869), 1, anon_sym_COLON, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71347] = 2, - ACTIONS(4439), 1, - sym_identifier, + [79841] = 2, + ACTIONS(4871), 1, + anon_sym_END_CASE, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71356] = 2, - ACTIONS(4441), 1, - sym_identifier, + [79850] = 2, + ACTIONS(4873), 1, + sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71365] = 2, - ACTIONS(4443), 1, + [79859] = 2, + ACTIONS(3583), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79868] = 2, + ACTIONS(4875), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71374] = 2, - ACTIONS(4445), 1, - anon_sym_COLON_EQ, + [79877] = 2, + ACTIONS(4877), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71383] = 2, - ACTIONS(4447), 1, - anon_sym_LBRACK, + [79886] = 2, + ACTIONS(4879), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71392] = 2, - ACTIONS(4449), 1, - anon_sym_COLON_EQ, + [79895] = 2, + ACTIONS(4881), 1, + sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71401] = 2, - ACTIONS(4451), 1, - anon_sym_COLON_EQ, + [79904] = 2, + ACTIONS(4883), 1, + sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71410] = 2, - ACTIONS(4453), 1, - anon_sym_COLON_EQ, + [79913] = 2, + ACTIONS(3569), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71419] = 2, - ACTIONS(4455), 1, - anon_sym_COLON_EQ, + [79922] = 2, + ACTIONS(4885), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71428] = 2, - ACTIONS(4457), 1, - anon_sym_COLON_EQ, + [79931] = 2, + ACTIONS(3525), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71437] = 2, - ACTIONS(4459), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71446] = 2, - ACTIONS(4461), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71455] = 2, - ACTIONS(4463), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71464] = 2, - ACTIONS(4465), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71473] = 2, - ACTIONS(4467), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 3, - sym_line_comment, - sym_block_comment, - sym_c_style_comment, - [71482] = 2, - ACTIONS(4469), 1, + [79940] = 2, + ACTIONS(4887), 1, anon_sym_COLON, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71491] = 2, - ACTIONS(4471), 1, + [79949] = 2, + ACTIONS(4889), 1, sym_identifier, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71500] = 2, - ACTIONS(4473), 1, + [79958] = 2, + ACTIONS(4891), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79967] = 2, + ACTIONS(3101), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79976] = 2, + ACTIONS(4893), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79985] = 2, + ACTIONS(4895), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [79994] = 2, + ACTIONS(4897), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80003] = 2, + ACTIONS(4899), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80012] = 2, + ACTIONS(3507), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80021] = 2, + ACTIONS(4901), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80030] = 2, + ACTIONS(4903), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80039] = 2, + ACTIONS(4905), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80048] = 2, + ACTIONS(3517), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80057] = 2, + ACTIONS(4907), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80066] = 2, + ACTIONS(4909), 1, sym_identifier, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71509] = 2, - ACTIONS(4475), 1, - sym_identifier, + [80075] = 2, + ACTIONS(4911), 1, + sym_number, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71518] = 2, - ACTIONS(4477), 1, - sym_identifier, + [80084] = 2, + ACTIONS(4913), 1, + anon_sym_STRUCT, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71527] = 2, - ACTIONS(4479), 1, - sym_identifier, + [80093] = 2, + ACTIONS(4915), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71536] = 2, - ACTIONS(4481), 1, - sym_identifier, + [80102] = 2, + ACTIONS(4917), 1, + anon_sym_END_TYPE, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71545] = 2, - ACTIONS(4483), 1, - sym_identifier, + [80111] = 2, + ACTIONS(4919), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71554] = 2, - ACTIONS(4485), 1, - sym_identifier, + [80120] = 2, + ACTIONS(3545), 1, + anon_sym_END_IF, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71563] = 2, - ACTIONS(4487), 1, - sym_identifier, + [80129] = 2, + ACTIONS(3216), 1, + anon_sym_BEGIN, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71572] = 2, - ACTIONS(4489), 1, - sym_identifier, + [80138] = 2, + ACTIONS(4921), 1, + anon_sym_LBRACK, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, - [71581] = 2, - ACTIONS(4491), 1, + [80147] = 2, + ACTIONS(4923), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80156] = 2, + ACTIONS(4925), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80165] = 2, + ACTIONS(4927), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80174] = 2, + ACTIONS(4929), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80183] = 2, + ACTIONS(4931), 1, anon_sym_END_CASE, ACTIONS(3), 3, sym_line_comment, sym_block_comment, sym_c_style_comment, + [80192] = 2, + ACTIONS(4933), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80201] = 2, + ACTIONS(4935), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80210] = 2, + ACTIONS(4937), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80219] = 2, + ACTIONS(4939), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80228] = 2, + ACTIONS(4941), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80237] = 2, + ACTIONS(4943), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80246] = 2, + ACTIONS(4945), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80255] = 2, + ACTIONS(4947), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80264] = 2, + ACTIONS(4949), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80273] = 2, + ACTIONS(3549), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80282] = 2, + ACTIONS(3212), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80291] = 2, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80300] = 2, + ACTIONS(3541), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80309] = 2, + ACTIONS(4953), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80318] = 2, + ACTIONS(4955), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80327] = 2, + ACTIONS(4957), 1, + anon_sym_OF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80336] = 2, + ACTIONS(4959), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80345] = 2, + ACTIONS(4961), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80354] = 2, + ACTIONS(4963), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80363] = 2, + ACTIONS(3565), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80372] = 2, + ACTIONS(4965), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80381] = 2, + ACTIONS(4653), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80390] = 2, + ACTIONS(4967), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80399] = 2, + ACTIONS(4969), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80408] = 2, + ACTIONS(4971), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80417] = 2, + ACTIONS(4973), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80426] = 2, + ACTIONS(4975), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80435] = 2, + ACTIONS(4977), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80444] = 2, + ACTIONS(3206), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80453] = 2, + ACTIONS(4979), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80462] = 2, + ACTIONS(3527), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80471] = 2, + ACTIONS(4981), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80480] = 2, + ACTIONS(4983), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80489] = 2, + ACTIONS(4985), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80498] = 2, + ACTIONS(4987), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80507] = 2, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80516] = 2, + ACTIONS(4991), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80525] = 2, + ACTIONS(3559), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80534] = 2, + ACTIONS(4993), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80543] = 2, + ACTIONS(4995), 1, + sym_number, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80552] = 2, + ACTIONS(3274), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80561] = 2, + ACTIONS(4997), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80570] = 2, + ACTIONS(4999), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80579] = 2, + ACTIONS(5001), 1, + anon_sym_END_TYPE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80588] = 2, + ACTIONS(5003), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80597] = 2, + ACTIONS(3585), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80606] = 2, + ACTIONS(5005), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80615] = 2, + ACTIONS(5007), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80624] = 2, + ACTIONS(5009), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80633] = 2, + ACTIONS(5011), 1, + anon_sym_BEGIN, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80642] = 2, + ACTIONS(5013), 1, + anon_sym_END_CASE, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80651] = 2, + ACTIONS(5015), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80660] = 2, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80669] = 2, + ACTIONS(5019), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80678] = 2, + ACTIONS(5021), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80687] = 2, + ACTIONS(5023), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80696] = 2, + ACTIONS(5025), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80705] = 2, + ACTIONS(5027), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80714] = 2, + ACTIONS(5029), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80723] = 2, + ACTIONS(5031), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80732] = 2, + ACTIONS(5033), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80741] = 2, + ACTIONS(5035), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80750] = 2, + ACTIONS(5037), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80759] = 2, + ACTIONS(5039), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80768] = 2, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80777] = 2, + ACTIONS(5043), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80786] = 2, + ACTIONS(5045), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80795] = 2, + ACTIONS(5047), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80804] = 2, + ACTIONS(5049), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80813] = 2, + ACTIONS(5051), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80822] = 2, + ACTIONS(5053), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80831] = 2, + ACTIONS(5055), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80840] = 2, + ACTIONS(5057), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80849] = 2, + ACTIONS(5059), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80858] = 2, + ACTIONS(5061), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80867] = 2, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, + [80876] = 2, + ACTIONS(3539), 1, + anon_sym_END_IF, + ACTIONS(3), 3, + sym_line_comment, + sym_block_comment, + sym_c_style_comment, }; static const uint32_t ts_small_parse_table_map[] = { @@ -67698,1879 +76101,2133 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 237, [SMALL_STATE(6)] = 316, [SMALL_STATE(7)] = 395, - [SMALL_STATE(8)] = 512, - [SMALL_STATE(9)] = 629, - [SMALL_STATE(10)] = 747, - [SMALL_STATE(11)] = 865, - [SMALL_STATE(12)] = 983, - [SMALL_STATE(13)] = 1101, - [SMALL_STATE(14)] = 1219, - [SMALL_STATE(15)] = 1337, - [SMALL_STATE(16)] = 1455, - [SMALL_STATE(17)] = 1573, - [SMALL_STATE(18)] = 1691, - [SMALL_STATE(19)] = 1809, - [SMALL_STATE(20)] = 1927, - [SMALL_STATE(21)] = 2045, - [SMALL_STATE(22)] = 2163, - [SMALL_STATE(23)] = 2281, - [SMALL_STATE(24)] = 2399, - [SMALL_STATE(25)] = 2517, - [SMALL_STATE(26)] = 2635, - [SMALL_STATE(27)] = 2753, - [SMALL_STATE(28)] = 2871, - [SMALL_STATE(29)] = 2989, - [SMALL_STATE(30)] = 3107, - [SMALL_STATE(31)] = 3225, - [SMALL_STATE(32)] = 3343, - [SMALL_STATE(33)] = 3461, - [SMALL_STATE(34)] = 3568, - [SMALL_STATE(35)] = 3677, - [SMALL_STATE(36)] = 3784, - [SMALL_STATE(37)] = 3893, - [SMALL_STATE(38)] = 4000, - [SMALL_STATE(39)] = 4109, - [SMALL_STATE(40)] = 4214, - [SMALL_STATE(41)] = 4319, - [SMALL_STATE(42)] = 4424, - [SMALL_STATE(43)] = 4529, - [SMALL_STATE(44)] = 4634, - [SMALL_STATE(45)] = 4739, - [SMALL_STATE(46)] = 4844, - [SMALL_STATE(47)] = 4949, - [SMALL_STATE(48)] = 5054, - [SMALL_STATE(49)] = 5159, - [SMALL_STATE(50)] = 5264, - [SMALL_STATE(51)] = 5369, - [SMALL_STATE(52)] = 5474, - [SMALL_STATE(53)] = 5579, - [SMALL_STATE(54)] = 5684, - [SMALL_STATE(55)] = 5789, - [SMALL_STATE(56)] = 5894, - [SMALL_STATE(57)] = 5999, - [SMALL_STATE(58)] = 6104, - [SMALL_STATE(59)] = 6209, - [SMALL_STATE(60)] = 6314, - [SMALL_STATE(61)] = 6419, - [SMALL_STATE(62)] = 6524, - [SMALL_STATE(63)] = 6629, - [SMALL_STATE(64)] = 6734, - [SMALL_STATE(65)] = 6839, - [SMALL_STATE(66)] = 6944, - [SMALL_STATE(67)] = 7049, - [SMALL_STATE(68)] = 7154, - [SMALL_STATE(69)] = 7259, - [SMALL_STATE(70)] = 7364, - [SMALL_STATE(71)] = 7469, - [SMALL_STATE(72)] = 7574, - [SMALL_STATE(73)] = 7679, - [SMALL_STATE(74)] = 7784, - [SMALL_STATE(75)] = 7889, - [SMALL_STATE(76)] = 7994, - [SMALL_STATE(77)] = 8099, - [SMALL_STATE(78)] = 8204, - [SMALL_STATE(79)] = 8309, - [SMALL_STATE(80)] = 8414, - [SMALL_STATE(81)] = 8519, - [SMALL_STATE(82)] = 8624, - [SMALL_STATE(83)] = 8729, - [SMALL_STATE(84)] = 8834, - [SMALL_STATE(85)] = 8939, - [SMALL_STATE(86)] = 9044, - [SMALL_STATE(87)] = 9149, - [SMALL_STATE(88)] = 9254, - [SMALL_STATE(89)] = 9359, - [SMALL_STATE(90)] = 9464, - [SMALL_STATE(91)] = 9569, - [SMALL_STATE(92)] = 9674, - [SMALL_STATE(93)] = 9779, - [SMALL_STATE(94)] = 9884, - [SMALL_STATE(95)] = 9989, - [SMALL_STATE(96)] = 10094, - [SMALL_STATE(97)] = 10199, - [SMALL_STATE(98)] = 10304, - [SMALL_STATE(99)] = 10409, - [SMALL_STATE(100)] = 10514, - [SMALL_STATE(101)] = 10619, - [SMALL_STATE(102)] = 10724, - [SMALL_STATE(103)] = 10829, - [SMALL_STATE(104)] = 10934, - [SMALL_STATE(105)] = 11039, - [SMALL_STATE(106)] = 11144, - [SMALL_STATE(107)] = 11249, - [SMALL_STATE(108)] = 11354, - [SMALL_STATE(109)] = 11459, - [SMALL_STATE(110)] = 11564, - [SMALL_STATE(111)] = 11669, - [SMALL_STATE(112)] = 11774, - [SMALL_STATE(113)] = 11879, - [SMALL_STATE(114)] = 11984, - [SMALL_STATE(115)] = 12089, - [SMALL_STATE(116)] = 12194, - [SMALL_STATE(117)] = 12299, - [SMALL_STATE(118)] = 12404, - [SMALL_STATE(119)] = 12509, - [SMALL_STATE(120)] = 12614, - [SMALL_STATE(121)] = 12719, - [SMALL_STATE(122)] = 12824, - [SMALL_STATE(123)] = 12929, - [SMALL_STATE(124)] = 13034, - [SMALL_STATE(125)] = 13139, - [SMALL_STATE(126)] = 13244, - [SMALL_STATE(127)] = 13349, - [SMALL_STATE(128)] = 13454, - [SMALL_STATE(129)] = 13559, - [SMALL_STATE(130)] = 13664, - [SMALL_STATE(131)] = 13769, - [SMALL_STATE(132)] = 13874, - [SMALL_STATE(133)] = 13979, - [SMALL_STATE(134)] = 14084, - [SMALL_STATE(135)] = 14189, - [SMALL_STATE(136)] = 14294, - [SMALL_STATE(137)] = 14399, - [SMALL_STATE(138)] = 14504, - [SMALL_STATE(139)] = 14609, - [SMALL_STATE(140)] = 14714, - [SMALL_STATE(141)] = 14819, - [SMALL_STATE(142)] = 14924, - [SMALL_STATE(143)] = 15029, - [SMALL_STATE(144)] = 15134, - [SMALL_STATE(145)] = 15239, - [SMALL_STATE(146)] = 15344, - [SMALL_STATE(147)] = 15449, - [SMALL_STATE(148)] = 15554, - [SMALL_STATE(149)] = 15659, - [SMALL_STATE(150)] = 15764, - [SMALL_STATE(151)] = 15869, - [SMALL_STATE(152)] = 15974, - [SMALL_STATE(153)] = 16079, - [SMALL_STATE(154)] = 16184, - [SMALL_STATE(155)] = 16289, - [SMALL_STATE(156)] = 16394, - [SMALL_STATE(157)] = 16499, - [SMALL_STATE(158)] = 16604, - [SMALL_STATE(159)] = 16709, - [SMALL_STATE(160)] = 16814, - [SMALL_STATE(161)] = 16919, - [SMALL_STATE(162)] = 17024, - [SMALL_STATE(163)] = 17129, - [SMALL_STATE(164)] = 17234, - [SMALL_STATE(165)] = 17339, - [SMALL_STATE(166)] = 17444, - [SMALL_STATE(167)] = 17549, - [SMALL_STATE(168)] = 17654, - [SMALL_STATE(169)] = 17759, - [SMALL_STATE(170)] = 17864, - [SMALL_STATE(171)] = 17969, - [SMALL_STATE(172)] = 18074, - [SMALL_STATE(173)] = 18179, - [SMALL_STATE(174)] = 18284, - [SMALL_STATE(175)] = 18389, - [SMALL_STATE(176)] = 18494, - [SMALL_STATE(177)] = 18599, - [SMALL_STATE(178)] = 18704, - [SMALL_STATE(179)] = 18809, - [SMALL_STATE(180)] = 18914, - [SMALL_STATE(181)] = 19019, - [SMALL_STATE(182)] = 19124, - [SMALL_STATE(183)] = 19229, - [SMALL_STATE(184)] = 19334, - [SMALL_STATE(185)] = 19439, - [SMALL_STATE(186)] = 19544, - [SMALL_STATE(187)] = 19649, - [SMALL_STATE(188)] = 19754, - [SMALL_STATE(189)] = 19859, - [SMALL_STATE(190)] = 19964, - [SMALL_STATE(191)] = 20069, - [SMALL_STATE(192)] = 20174, - [SMALL_STATE(193)] = 20279, - [SMALL_STATE(194)] = 20384, - [SMALL_STATE(195)] = 20489, - [SMALL_STATE(196)] = 20594, - [SMALL_STATE(197)] = 20699, - [SMALL_STATE(198)] = 20804, - [SMALL_STATE(199)] = 20909, - [SMALL_STATE(200)] = 21014, - [SMALL_STATE(201)] = 21119, - [SMALL_STATE(202)] = 21224, - [SMALL_STATE(203)] = 21329, - [SMALL_STATE(204)] = 21434, - [SMALL_STATE(205)] = 21539, - [SMALL_STATE(206)] = 21644, - [SMALL_STATE(207)] = 21749, - [SMALL_STATE(208)] = 21854, - [SMALL_STATE(209)] = 21959, - [SMALL_STATE(210)] = 22064, - [SMALL_STATE(211)] = 22169, - [SMALL_STATE(212)] = 22274, - [SMALL_STATE(213)] = 22379, - [SMALL_STATE(214)] = 22484, - [SMALL_STATE(215)] = 22589, - [SMALL_STATE(216)] = 22694, - [SMALL_STATE(217)] = 22799, - [SMALL_STATE(218)] = 22904, - [SMALL_STATE(219)] = 23009, - [SMALL_STATE(220)] = 23114, - [SMALL_STATE(221)] = 23219, - [SMALL_STATE(222)] = 23324, - [SMALL_STATE(223)] = 23429, - [SMALL_STATE(224)] = 23534, - [SMALL_STATE(225)] = 23639, - [SMALL_STATE(226)] = 23744, - [SMALL_STATE(227)] = 23849, - [SMALL_STATE(228)] = 23954, - [SMALL_STATE(229)] = 24059, - [SMALL_STATE(230)] = 24164, - [SMALL_STATE(231)] = 24216, - [SMALL_STATE(232)] = 24268, - [SMALL_STATE(233)] = 24322, - [SMALL_STATE(234)] = 24362, - [SMALL_STATE(235)] = 24416, - [SMALL_STATE(236)] = 24467, - [SMALL_STATE(237)] = 24520, - [SMALL_STATE(238)] = 24573, - [SMALL_STATE(239)] = 24622, - [SMALL_STATE(240)] = 24675, - [SMALL_STATE(241)] = 24728, - [SMALL_STATE(242)] = 24778, - [SMALL_STATE(243)] = 24826, - [SMALL_STATE(244)] = 24864, - [SMALL_STATE(245)] = 24906, - [SMALL_STATE(246)] = 24948, - [SMALL_STATE(247)] = 24986, - [SMALL_STATE(248)] = 25034, - [SMALL_STATE(249)] = 25084, - [SMALL_STATE(250)] = 25135, - [SMALL_STATE(251)] = 25186, - [SMALL_STATE(252)] = 25237, - [SMALL_STATE(253)] = 25288, - [SMALL_STATE(254)] = 25339, - [SMALL_STATE(255)] = 25390, - [SMALL_STATE(256)] = 25441, - [SMALL_STATE(257)] = 25492, - [SMALL_STATE(258)] = 25529, - [SMALL_STATE(259)] = 25580, - [SMALL_STATE(260)] = 25631, - [SMALL_STATE(261)] = 25682, - [SMALL_STATE(262)] = 25733, - [SMALL_STATE(263)] = 25784, - [SMALL_STATE(264)] = 25835, - [SMALL_STATE(265)] = 25886, - [SMALL_STATE(266)] = 25925, - [SMALL_STATE(267)] = 25976, - [SMALL_STATE(268)] = 26027, - [SMALL_STATE(269)] = 26064, - [SMALL_STATE(270)] = 26115, - [SMALL_STATE(271)] = 26151, - [SMALL_STATE(272)] = 26197, - [SMALL_STATE(273)] = 26243, - [SMALL_STATE(274)] = 26291, - [SMALL_STATE(275)] = 26339, - [SMALL_STATE(276)] = 26375, - [SMALL_STATE(277)] = 26421, - [SMALL_STATE(278)] = 26469, - [SMALL_STATE(279)] = 26515, - [SMALL_STATE(280)] = 26561, - [SMALL_STATE(281)] = 26609, - [SMALL_STATE(282)] = 26657, - [SMALL_STATE(283)] = 26693, - [SMALL_STATE(284)] = 26739, - [SMALL_STATE(285)] = 26775, - [SMALL_STATE(286)] = 26821, - [SMALL_STATE(287)] = 26869, - [SMALL_STATE(288)] = 26915, - [SMALL_STATE(289)] = 26963, - [SMALL_STATE(290)] = 27009, - [SMALL_STATE(291)] = 27057, - [SMALL_STATE(292)] = 27105, - [SMALL_STATE(293)] = 27140, - [SMALL_STATE(294)] = 27175, - [SMALL_STATE(295)] = 27210, - [SMALL_STATE(296)] = 27245, - [SMALL_STATE(297)] = 27280, - [SMALL_STATE(298)] = 27317, - [SMALL_STATE(299)] = 27352, - [SMALL_STATE(300)] = 27387, - [SMALL_STATE(301)] = 27422, - [SMALL_STATE(302)] = 27457, - [SMALL_STATE(303)] = 27492, - [SMALL_STATE(304)] = 27527, - [SMALL_STATE(305)] = 27562, - [SMALL_STATE(306)] = 27597, - [SMALL_STATE(307)] = 27632, - [SMALL_STATE(308)] = 27667, - [SMALL_STATE(309)] = 27702, - [SMALL_STATE(310)] = 27747, - [SMALL_STATE(311)] = 27782, - [SMALL_STATE(312)] = 27817, - [SMALL_STATE(313)] = 27852, - [SMALL_STATE(314)] = 27887, - [SMALL_STATE(315)] = 27922, - [SMALL_STATE(316)] = 27957, - [SMALL_STATE(317)] = 27992, - [SMALL_STATE(318)] = 28027, - [SMALL_STATE(319)] = 28062, - [SMALL_STATE(320)] = 28097, - [SMALL_STATE(321)] = 28132, - [SMALL_STATE(322)] = 28167, - [SMALL_STATE(323)] = 28202, - [SMALL_STATE(324)] = 28237, - [SMALL_STATE(325)] = 28272, - [SMALL_STATE(326)] = 28307, - [SMALL_STATE(327)] = 28342, - [SMALL_STATE(328)] = 28379, - [SMALL_STATE(329)] = 28414, - [SMALL_STATE(330)] = 28449, - [SMALL_STATE(331)] = 28484, - [SMALL_STATE(332)] = 28519, - [SMALL_STATE(333)] = 28558, - [SMALL_STATE(334)] = 28593, - [SMALL_STATE(335)] = 28628, - [SMALL_STATE(336)] = 28679, - [SMALL_STATE(337)] = 28714, - [SMALL_STATE(338)] = 28763, - [SMALL_STATE(339)] = 28810, - [SMALL_STATE(340)] = 28845, - [SMALL_STATE(341)] = 28880, - [SMALL_STATE(342)] = 28917, - [SMALL_STATE(343)] = 28952, - [SMALL_STATE(344)] = 28987, - [SMALL_STATE(345)] = 29022, - [SMALL_STATE(346)] = 29057, - [SMALL_STATE(347)] = 29092, - [SMALL_STATE(348)] = 29127, - [SMALL_STATE(349)] = 29162, - [SMALL_STATE(350)] = 29197, - [SMALL_STATE(351)] = 29232, - [SMALL_STATE(352)] = 29267, - [SMALL_STATE(353)] = 29302, - [SMALL_STATE(354)] = 29337, - [SMALL_STATE(355)] = 29372, - [SMALL_STATE(356)] = 29407, - [SMALL_STATE(357)] = 29442, - [SMALL_STATE(358)] = 29477, - [SMALL_STATE(359)] = 29512, - [SMALL_STATE(360)] = 29547, - [SMALL_STATE(361)] = 29582, - [SMALL_STATE(362)] = 29617, - [SMALL_STATE(363)] = 29652, - [SMALL_STATE(364)] = 29687, - [SMALL_STATE(365)] = 29722, - [SMALL_STATE(366)] = 29757, - [SMALL_STATE(367)] = 29792, - [SMALL_STATE(368)] = 29827, - [SMALL_STATE(369)] = 29862, - [SMALL_STATE(370)] = 29897, - [SMALL_STATE(371)] = 29932, - [SMALL_STATE(372)] = 29967, - [SMALL_STATE(373)] = 30002, - [SMALL_STATE(374)] = 30037, - [SMALL_STATE(375)] = 30072, - [SMALL_STATE(376)] = 30107, - [SMALL_STATE(377)] = 30142, - [SMALL_STATE(378)] = 30177, - [SMALL_STATE(379)] = 30212, - [SMALL_STATE(380)] = 30247, - [SMALL_STATE(381)] = 30288, - [SMALL_STATE(382)] = 30322, - [SMALL_STATE(383)] = 30356, - [SMALL_STATE(384)] = 30390, - [SMALL_STATE(385)] = 30424, - [SMALL_STATE(386)] = 30458, - [SMALL_STATE(387)] = 30492, - [SMALL_STATE(388)] = 30526, - [SMALL_STATE(389)] = 30560, - [SMALL_STATE(390)] = 30594, - [SMALL_STATE(391)] = 30628, - [SMALL_STATE(392)] = 30662, - [SMALL_STATE(393)] = 30696, - [SMALL_STATE(394)] = 30730, - [SMALL_STATE(395)] = 30764, - [SMALL_STATE(396)] = 30798, - [SMALL_STATE(397)] = 30832, - [SMALL_STATE(398)] = 30866, - [SMALL_STATE(399)] = 30900, - [SMALL_STATE(400)] = 30934, - [SMALL_STATE(401)] = 30968, - [SMALL_STATE(402)] = 31002, - [SMALL_STATE(403)] = 31036, - [SMALL_STATE(404)] = 31070, - [SMALL_STATE(405)] = 31104, - [SMALL_STATE(406)] = 31138, - [SMALL_STATE(407)] = 31172, - [SMALL_STATE(408)] = 31206, - [SMALL_STATE(409)] = 31240, - [SMALL_STATE(410)] = 31274, - [SMALL_STATE(411)] = 31308, - [SMALL_STATE(412)] = 31342, - [SMALL_STATE(413)] = 31376, - [SMALL_STATE(414)] = 31410, - [SMALL_STATE(415)] = 31444, - [SMALL_STATE(416)] = 31478, - [SMALL_STATE(417)] = 31512, - [SMALL_STATE(418)] = 31546, - [SMALL_STATE(419)] = 31580, - [SMALL_STATE(420)] = 31614, - [SMALL_STATE(421)] = 31648, - [SMALL_STATE(422)] = 31682, - [SMALL_STATE(423)] = 31716, - [SMALL_STATE(424)] = 31750, - [SMALL_STATE(425)] = 31784, - [SMALL_STATE(426)] = 31818, - [SMALL_STATE(427)] = 31852, - [SMALL_STATE(428)] = 31886, - [SMALL_STATE(429)] = 31920, - [SMALL_STATE(430)] = 31956, - [SMALL_STATE(431)] = 31990, - [SMALL_STATE(432)] = 32024, - [SMALL_STATE(433)] = 32058, - [SMALL_STATE(434)] = 32092, - [SMALL_STATE(435)] = 32126, - [SMALL_STATE(436)] = 32160, - [SMALL_STATE(437)] = 32194, - [SMALL_STATE(438)] = 32228, - [SMALL_STATE(439)] = 32264, - [SMALL_STATE(440)] = 32298, - [SMALL_STATE(441)] = 32332, - [SMALL_STATE(442)] = 32366, - [SMALL_STATE(443)] = 32400, - [SMALL_STATE(444)] = 32434, - [SMALL_STATE(445)] = 32470, - [SMALL_STATE(446)] = 32504, - [SMALL_STATE(447)] = 32538, - [SMALL_STATE(448)] = 32572, - [SMALL_STATE(449)] = 32608, - [SMALL_STATE(450)] = 32642, - [SMALL_STATE(451)] = 32676, - [SMALL_STATE(452)] = 32710, - [SMALL_STATE(453)] = 32744, - [SMALL_STATE(454)] = 32778, - [SMALL_STATE(455)] = 32812, - [SMALL_STATE(456)] = 32846, - [SMALL_STATE(457)] = 32880, - [SMALL_STATE(458)] = 32914, - [SMALL_STATE(459)] = 32948, - [SMALL_STATE(460)] = 32982, - [SMALL_STATE(461)] = 33016, - [SMALL_STATE(462)] = 33050, - [SMALL_STATE(463)] = 33084, - [SMALL_STATE(464)] = 33118, - [SMALL_STATE(465)] = 33152, - [SMALL_STATE(466)] = 33186, - [SMALL_STATE(467)] = 33220, - [SMALL_STATE(468)] = 33254, - [SMALL_STATE(469)] = 33288, - [SMALL_STATE(470)] = 33322, - [SMALL_STATE(471)] = 33356, - [SMALL_STATE(472)] = 33390, - [SMALL_STATE(473)] = 33424, - [SMALL_STATE(474)] = 33458, - [SMALL_STATE(475)] = 33492, - [SMALL_STATE(476)] = 33526, - [SMALL_STATE(477)] = 33560, - [SMALL_STATE(478)] = 33596, - [SMALL_STATE(479)] = 33630, - [SMALL_STATE(480)] = 33664, - [SMALL_STATE(481)] = 33698, - [SMALL_STATE(482)] = 33732, - [SMALL_STATE(483)] = 33766, - [SMALL_STATE(484)] = 33800, - [SMALL_STATE(485)] = 33836, - [SMALL_STATE(486)] = 33870, - [SMALL_STATE(487)] = 33904, - [SMALL_STATE(488)] = 33936, - [SMALL_STATE(489)] = 33968, - [SMALL_STATE(490)] = 34002, - [SMALL_STATE(491)] = 34034, - [SMALL_STATE(492)] = 34066, - [SMALL_STATE(493)] = 34098, - [SMALL_STATE(494)] = 34130, - [SMALL_STATE(495)] = 34162, - [SMALL_STATE(496)] = 34194, - [SMALL_STATE(497)] = 34226, - [SMALL_STATE(498)] = 34258, - [SMALL_STATE(499)] = 34292, - [SMALL_STATE(500)] = 34324, - [SMALL_STATE(501)] = 34356, - [SMALL_STATE(502)] = 34388, - [SMALL_STATE(503)] = 34420, - [SMALL_STATE(504)] = 34452, - [SMALL_STATE(505)] = 34484, - [SMALL_STATE(506)] = 34518, - [SMALL_STATE(507)] = 34550, - [SMALL_STATE(508)] = 34582, - [SMALL_STATE(509)] = 34614, - [SMALL_STATE(510)] = 34646, - [SMALL_STATE(511)] = 34678, - [SMALL_STATE(512)] = 34710, - [SMALL_STATE(513)] = 34742, - [SMALL_STATE(514)] = 34774, - [SMALL_STATE(515)] = 34806, - [SMALL_STATE(516)] = 34838, - [SMALL_STATE(517)] = 34870, - [SMALL_STATE(518)] = 34902, - [SMALL_STATE(519)] = 34934, - [SMALL_STATE(520)] = 34966, - [SMALL_STATE(521)] = 34998, - [SMALL_STATE(522)] = 35030, - [SMALL_STATE(523)] = 35062, - [SMALL_STATE(524)] = 35094, - [SMALL_STATE(525)] = 35126, - [SMALL_STATE(526)] = 35158, - [SMALL_STATE(527)] = 35192, - [SMALL_STATE(528)] = 35224, - [SMALL_STATE(529)] = 35256, - [SMALL_STATE(530)] = 35288, - [SMALL_STATE(531)] = 35320, - [SMALL_STATE(532)] = 35352, - [SMALL_STATE(533)] = 35384, - [SMALL_STATE(534)] = 35416, - [SMALL_STATE(535)] = 35448, - [SMALL_STATE(536)] = 35480, - [SMALL_STATE(537)] = 35514, - [SMALL_STATE(538)] = 35546, - [SMALL_STATE(539)] = 35578, - [SMALL_STATE(540)] = 35610, - [SMALL_STATE(541)] = 35642, - [SMALL_STATE(542)] = 35674, - [SMALL_STATE(543)] = 35708, - [SMALL_STATE(544)] = 35740, - [SMALL_STATE(545)] = 35772, - [SMALL_STATE(546)] = 35804, - [SMALL_STATE(547)] = 35836, - [SMALL_STATE(548)] = 35868, - [SMALL_STATE(549)] = 35900, - [SMALL_STATE(550)] = 35932, - [SMALL_STATE(551)] = 35964, - [SMALL_STATE(552)] = 35996, - [SMALL_STATE(553)] = 36028, - [SMALL_STATE(554)] = 36060, - [SMALL_STATE(555)] = 36094, - [SMALL_STATE(556)] = 36126, - [SMALL_STATE(557)] = 36158, - [SMALL_STATE(558)] = 36190, - [SMALL_STATE(559)] = 36222, - [SMALL_STATE(560)] = 36254, - [SMALL_STATE(561)] = 36286, - [SMALL_STATE(562)] = 36318, - [SMALL_STATE(563)] = 36350, - [SMALL_STATE(564)] = 36382, - [SMALL_STATE(565)] = 36414, - [SMALL_STATE(566)] = 36446, - [SMALL_STATE(567)] = 36478, - [SMALL_STATE(568)] = 36510, - [SMALL_STATE(569)] = 36542, - [SMALL_STATE(570)] = 36574, - [SMALL_STATE(571)] = 36606, - [SMALL_STATE(572)] = 36638, - [SMALL_STATE(573)] = 36670, - [SMALL_STATE(574)] = 36702, - [SMALL_STATE(575)] = 36734, - [SMALL_STATE(576)] = 36766, - [SMALL_STATE(577)] = 36800, - [SMALL_STATE(578)] = 36832, - [SMALL_STATE(579)] = 36864, - [SMALL_STATE(580)] = 36896, - [SMALL_STATE(581)] = 36928, - [SMALL_STATE(582)] = 36960, - [SMALL_STATE(583)] = 36992, - [SMALL_STATE(584)] = 37024, - [SMALL_STATE(585)] = 37056, - [SMALL_STATE(586)] = 37088, - [SMALL_STATE(587)] = 37122, - [SMALL_STATE(588)] = 37154, - [SMALL_STATE(589)] = 37186, - [SMALL_STATE(590)] = 37218, - [SMALL_STATE(591)] = 37250, - [SMALL_STATE(592)] = 37282, - [SMALL_STATE(593)] = 37316, - [SMALL_STATE(594)] = 37348, - [SMALL_STATE(595)] = 37380, - [SMALL_STATE(596)] = 37412, - [SMALL_STATE(597)] = 37444, - [SMALL_STATE(598)] = 37476, - [SMALL_STATE(599)] = 37508, - [SMALL_STATE(600)] = 37540, - [SMALL_STATE(601)] = 37572, - [SMALL_STATE(602)] = 37604, - [SMALL_STATE(603)] = 37636, - [SMALL_STATE(604)] = 37668, - [SMALL_STATE(605)] = 37700, - [SMALL_STATE(606)] = 37732, - [SMALL_STATE(607)] = 37764, - [SMALL_STATE(608)] = 37796, - [SMALL_STATE(609)] = 37828, - [SMALL_STATE(610)] = 37862, - [SMALL_STATE(611)] = 37894, - [SMALL_STATE(612)] = 37926, - [SMALL_STATE(613)] = 37958, - [SMALL_STATE(614)] = 37990, - [SMALL_STATE(615)] = 38022, - [SMALL_STATE(616)] = 38054, - [SMALL_STATE(617)] = 38086, - [SMALL_STATE(618)] = 38118, - [SMALL_STATE(619)] = 38150, - [SMALL_STATE(620)] = 38182, - [SMALL_STATE(621)] = 38214, - [SMALL_STATE(622)] = 38246, - [SMALL_STATE(623)] = 38278, - [SMALL_STATE(624)] = 38310, - [SMALL_STATE(625)] = 38342, - [SMALL_STATE(626)] = 38374, - [SMALL_STATE(627)] = 38408, - [SMALL_STATE(628)] = 38440, - [SMALL_STATE(629)] = 38472, - [SMALL_STATE(630)] = 38504, - [SMALL_STATE(631)] = 38536, - [SMALL_STATE(632)] = 38568, - [SMALL_STATE(633)] = 38600, - [SMALL_STATE(634)] = 38632, - [SMALL_STATE(635)] = 38664, - [SMALL_STATE(636)] = 38696, - [SMALL_STATE(637)] = 38730, - [SMALL_STATE(638)] = 38762, - [SMALL_STATE(639)] = 38794, - [SMALL_STATE(640)] = 38826, - [SMALL_STATE(641)] = 38858, - [SMALL_STATE(642)] = 38890, - [SMALL_STATE(643)] = 38924, - [SMALL_STATE(644)] = 38956, - [SMALL_STATE(645)] = 38988, - [SMALL_STATE(646)] = 39020, - [SMALL_STATE(647)] = 39052, - [SMALL_STATE(648)] = 39084, - [SMALL_STATE(649)] = 39116, - [SMALL_STATE(650)] = 39148, - [SMALL_STATE(651)] = 39182, - [SMALL_STATE(652)] = 39214, - [SMALL_STATE(653)] = 39246, - [SMALL_STATE(654)] = 39278, - [SMALL_STATE(655)] = 39310, - [SMALL_STATE(656)] = 39342, - [SMALL_STATE(657)] = 39374, - [SMALL_STATE(658)] = 39406, - [SMALL_STATE(659)] = 39438, - [SMALL_STATE(660)] = 39470, - [SMALL_STATE(661)] = 39502, - [SMALL_STATE(662)] = 39534, - [SMALL_STATE(663)] = 39566, - [SMALL_STATE(664)] = 39598, - [SMALL_STATE(665)] = 39630, - [SMALL_STATE(666)] = 39662, - [SMALL_STATE(667)] = 39694, - [SMALL_STATE(668)] = 39726, - [SMALL_STATE(669)] = 39758, - [SMALL_STATE(670)] = 39790, - [SMALL_STATE(671)] = 39822, - [SMALL_STATE(672)] = 39854, - [SMALL_STATE(673)] = 39886, - [SMALL_STATE(674)] = 39918, - [SMALL_STATE(675)] = 39950, - [SMALL_STATE(676)] = 39982, - [SMALL_STATE(677)] = 40014, - [SMALL_STATE(678)] = 40046, - [SMALL_STATE(679)] = 40078, - [SMALL_STATE(680)] = 40110, - [SMALL_STATE(681)] = 40142, - [SMALL_STATE(682)] = 40174, - [SMALL_STATE(683)] = 40206, - [SMALL_STATE(684)] = 40238, - [SMALL_STATE(685)] = 40270, - [SMALL_STATE(686)] = 40302, - [SMALL_STATE(687)] = 40334, - [SMALL_STATE(688)] = 40366, - [SMALL_STATE(689)] = 40398, - [SMALL_STATE(690)] = 40430, - [SMALL_STATE(691)] = 40462, - [SMALL_STATE(692)] = 40494, - [SMALL_STATE(693)] = 40526, - [SMALL_STATE(694)] = 40560, - [SMALL_STATE(695)] = 40592, - [SMALL_STATE(696)] = 40624, - [SMALL_STATE(697)] = 40656, - [SMALL_STATE(698)] = 40688, - [SMALL_STATE(699)] = 40720, - [SMALL_STATE(700)] = 40752, - [SMALL_STATE(701)] = 40784, - [SMALL_STATE(702)] = 40816, - [SMALL_STATE(703)] = 40848, - [SMALL_STATE(704)] = 40880, - [SMALL_STATE(705)] = 40912, - [SMALL_STATE(706)] = 40944, - [SMALL_STATE(707)] = 40976, - [SMALL_STATE(708)] = 41008, - [SMALL_STATE(709)] = 41042, - [SMALL_STATE(710)] = 41074, - [SMALL_STATE(711)] = 41106, - [SMALL_STATE(712)] = 41138, - [SMALL_STATE(713)] = 41170, - [SMALL_STATE(714)] = 41202, - [SMALL_STATE(715)] = 41234, - [SMALL_STATE(716)] = 41266, - [SMALL_STATE(717)] = 41300, - [SMALL_STATE(718)] = 41332, - [SMALL_STATE(719)] = 41364, - [SMALL_STATE(720)] = 41396, - [SMALL_STATE(721)] = 41430, - [SMALL_STATE(722)] = 41462, - [SMALL_STATE(723)] = 41494, - [SMALL_STATE(724)] = 41526, - [SMALL_STATE(725)] = 41558, - [SMALL_STATE(726)] = 41590, - [SMALL_STATE(727)] = 41622, - [SMALL_STATE(728)] = 41654, - [SMALL_STATE(729)] = 41686, - [SMALL_STATE(730)] = 41718, - [SMALL_STATE(731)] = 41752, - [SMALL_STATE(732)] = 41784, - [SMALL_STATE(733)] = 41816, - [SMALL_STATE(734)] = 41848, - [SMALL_STATE(735)] = 41880, - [SMALL_STATE(736)] = 41912, - [SMALL_STATE(737)] = 41946, - [SMALL_STATE(738)] = 41978, - [SMALL_STATE(739)] = 42010, - [SMALL_STATE(740)] = 42042, - [SMALL_STATE(741)] = 42074, - [SMALL_STATE(742)] = 42106, - [SMALL_STATE(743)] = 42138, - [SMALL_STATE(744)] = 42170, - [SMALL_STATE(745)] = 42202, - [SMALL_STATE(746)] = 42234, - [SMALL_STATE(747)] = 42266, - [SMALL_STATE(748)] = 42298, - [SMALL_STATE(749)] = 42330, - [SMALL_STATE(750)] = 42362, - [SMALL_STATE(751)] = 42394, - [SMALL_STATE(752)] = 42426, - [SMALL_STATE(753)] = 42458, - [SMALL_STATE(754)] = 42490, - [SMALL_STATE(755)] = 42522, - [SMALL_STATE(756)] = 42554, - [SMALL_STATE(757)] = 42586, - [SMALL_STATE(758)] = 42618, - [SMALL_STATE(759)] = 42650, - [SMALL_STATE(760)] = 42682, - [SMALL_STATE(761)] = 42714, - [SMALL_STATE(762)] = 42746, - [SMALL_STATE(763)] = 42778, - [SMALL_STATE(764)] = 42810, - [SMALL_STATE(765)] = 42842, - [SMALL_STATE(766)] = 42874, - [SMALL_STATE(767)] = 42906, - [SMALL_STATE(768)] = 42938, - [SMALL_STATE(769)] = 42970, - [SMALL_STATE(770)] = 43002, - [SMALL_STATE(771)] = 43034, - [SMALL_STATE(772)] = 43066, - [SMALL_STATE(773)] = 43098, - [SMALL_STATE(774)] = 43130, - [SMALL_STATE(775)] = 43162, - [SMALL_STATE(776)] = 43194, - [SMALL_STATE(777)] = 43226, - [SMALL_STATE(778)] = 43258, - [SMALL_STATE(779)] = 43290, - [SMALL_STATE(780)] = 43322, - [SMALL_STATE(781)] = 43354, - [SMALL_STATE(782)] = 43386, - [SMALL_STATE(783)] = 43418, - [SMALL_STATE(784)] = 43450, - [SMALL_STATE(785)] = 43482, - [SMALL_STATE(786)] = 43516, - [SMALL_STATE(787)] = 43548, - [SMALL_STATE(788)] = 43580, - [SMALL_STATE(789)] = 43612, - [SMALL_STATE(790)] = 43644, - [SMALL_STATE(791)] = 43676, - [SMALL_STATE(792)] = 43708, - [SMALL_STATE(793)] = 43740, - [SMALL_STATE(794)] = 43772, - [SMALL_STATE(795)] = 43804, - [SMALL_STATE(796)] = 43838, - [SMALL_STATE(797)] = 43870, - [SMALL_STATE(798)] = 43902, - [SMALL_STATE(799)] = 43934, - [SMALL_STATE(800)] = 43966, - [SMALL_STATE(801)] = 43998, - [SMALL_STATE(802)] = 44032, - [SMALL_STATE(803)] = 44064, - [SMALL_STATE(804)] = 44096, - [SMALL_STATE(805)] = 44128, - [SMALL_STATE(806)] = 44160, - [SMALL_STATE(807)] = 44192, - [SMALL_STATE(808)] = 44224, - [SMALL_STATE(809)] = 44256, - [SMALL_STATE(810)] = 44288, - [SMALL_STATE(811)] = 44320, - [SMALL_STATE(812)] = 44352, - [SMALL_STATE(813)] = 44384, - [SMALL_STATE(814)] = 44416, - [SMALL_STATE(815)] = 44448, - [SMALL_STATE(816)] = 44480, - [SMALL_STATE(817)] = 44512, - [SMALL_STATE(818)] = 44544, - [SMALL_STATE(819)] = 44576, - [SMALL_STATE(820)] = 44608, - [SMALL_STATE(821)] = 44640, - [SMALL_STATE(822)] = 44672, - [SMALL_STATE(823)] = 44704, - [SMALL_STATE(824)] = 44736, - [SMALL_STATE(825)] = 44768, - [SMALL_STATE(826)] = 44800, - [SMALL_STATE(827)] = 44832, - [SMALL_STATE(828)] = 44864, - [SMALL_STATE(829)] = 44896, - [SMALL_STATE(830)] = 44928, - [SMALL_STATE(831)] = 44960, - [SMALL_STATE(832)] = 44992, - [SMALL_STATE(833)] = 45024, - [SMALL_STATE(834)] = 45056, - [SMALL_STATE(835)] = 45088, - [SMALL_STATE(836)] = 45120, - [SMALL_STATE(837)] = 45154, - [SMALL_STATE(838)] = 45186, - [SMALL_STATE(839)] = 45218, - [SMALL_STATE(840)] = 45250, - [SMALL_STATE(841)] = 45282, - [SMALL_STATE(842)] = 45314, - [SMALL_STATE(843)] = 45346, - [SMALL_STATE(844)] = 45378, - [SMALL_STATE(845)] = 45410, - [SMALL_STATE(846)] = 45444, - [SMALL_STATE(847)] = 45476, - [SMALL_STATE(848)] = 45508, - [SMALL_STATE(849)] = 45540, - [SMALL_STATE(850)] = 45572, - [SMALL_STATE(851)] = 45604, - [SMALL_STATE(852)] = 45638, - [SMALL_STATE(853)] = 45670, - [SMALL_STATE(854)] = 45702, - [SMALL_STATE(855)] = 45734, - [SMALL_STATE(856)] = 45766, - [SMALL_STATE(857)] = 45798, - [SMALL_STATE(858)] = 45830, - [SMALL_STATE(859)] = 45862, - [SMALL_STATE(860)] = 45894, - [SMALL_STATE(861)] = 45926, - [SMALL_STATE(862)] = 45958, - [SMALL_STATE(863)] = 45990, - [SMALL_STATE(864)] = 46022, - [SMALL_STATE(865)] = 46054, - [SMALL_STATE(866)] = 46086, - [SMALL_STATE(867)] = 46118, - [SMALL_STATE(868)] = 46150, - [SMALL_STATE(869)] = 46182, - [SMALL_STATE(870)] = 46214, - [SMALL_STATE(871)] = 46246, - [SMALL_STATE(872)] = 46278, - [SMALL_STATE(873)] = 46310, - [SMALL_STATE(874)] = 46342, - [SMALL_STATE(875)] = 46374, - [SMALL_STATE(876)] = 46406, - [SMALL_STATE(877)] = 46438, - [SMALL_STATE(878)] = 46470, - [SMALL_STATE(879)] = 46502, - [SMALL_STATE(880)] = 46534, - [SMALL_STATE(881)] = 46566, - [SMALL_STATE(882)] = 46598, - [SMALL_STATE(883)] = 46630, - [SMALL_STATE(884)] = 46687, - [SMALL_STATE(885)] = 46744, - [SMALL_STATE(886)] = 46801, - [SMALL_STATE(887)] = 46858, - [SMALL_STATE(888)] = 46915, - [SMALL_STATE(889)] = 46972, - [SMALL_STATE(890)] = 47029, - [SMALL_STATE(891)] = 47086, - [SMALL_STATE(892)] = 47143, - [SMALL_STATE(893)] = 47200, - [SMALL_STATE(894)] = 47257, - [SMALL_STATE(895)] = 47314, - [SMALL_STATE(896)] = 47371, - [SMALL_STATE(897)] = 47428, - [SMALL_STATE(898)] = 47485, - [SMALL_STATE(899)] = 47542, - [SMALL_STATE(900)] = 47599, - [SMALL_STATE(901)] = 47656, - [SMALL_STATE(902)] = 47713, - [SMALL_STATE(903)] = 47770, - [SMALL_STATE(904)] = 47827, - [SMALL_STATE(905)] = 47884, - [SMALL_STATE(906)] = 47941, - [SMALL_STATE(907)] = 47998, - [SMALL_STATE(908)] = 48055, - [SMALL_STATE(909)] = 48112, - [SMALL_STATE(910)] = 48169, - [SMALL_STATE(911)] = 48226, - [SMALL_STATE(912)] = 48283, - [SMALL_STATE(913)] = 48340, - [SMALL_STATE(914)] = 48397, - [SMALL_STATE(915)] = 48454, - [SMALL_STATE(916)] = 48511, - [SMALL_STATE(917)] = 48568, - [SMALL_STATE(918)] = 48625, - [SMALL_STATE(919)] = 48682, - [SMALL_STATE(920)] = 48739, - [SMALL_STATE(921)] = 48796, - [SMALL_STATE(922)] = 48853, - [SMALL_STATE(923)] = 48910, - [SMALL_STATE(924)] = 48967, - [SMALL_STATE(925)] = 49024, - [SMALL_STATE(926)] = 49081, - [SMALL_STATE(927)] = 49138, - [SMALL_STATE(928)] = 49195, - [SMALL_STATE(929)] = 49252, - [SMALL_STATE(930)] = 49309, - [SMALL_STATE(931)] = 49366, - [SMALL_STATE(932)] = 49423, - [SMALL_STATE(933)] = 49480, - [SMALL_STATE(934)] = 49537, - [SMALL_STATE(935)] = 49594, - [SMALL_STATE(936)] = 49651, - [SMALL_STATE(937)] = 49708, - [SMALL_STATE(938)] = 49765, - [SMALL_STATE(939)] = 49822, - [SMALL_STATE(940)] = 49879, - [SMALL_STATE(941)] = 49936, - [SMALL_STATE(942)] = 49993, - [SMALL_STATE(943)] = 50050, - [SMALL_STATE(944)] = 50107, - [SMALL_STATE(945)] = 50164, - [SMALL_STATE(946)] = 50221, - [SMALL_STATE(947)] = 50278, - [SMALL_STATE(948)] = 50335, - [SMALL_STATE(949)] = 50392, - [SMALL_STATE(950)] = 50449, - [SMALL_STATE(951)] = 50506, - [SMALL_STATE(952)] = 50563, - [SMALL_STATE(953)] = 50620, - [SMALL_STATE(954)] = 50677, - [SMALL_STATE(955)] = 50734, - [SMALL_STATE(956)] = 50791, - [SMALL_STATE(957)] = 50848, - [SMALL_STATE(958)] = 50905, - [SMALL_STATE(959)] = 50962, - [SMALL_STATE(960)] = 51019, - [SMALL_STATE(961)] = 51076, - [SMALL_STATE(962)] = 51133, - [SMALL_STATE(963)] = 51190, - [SMALL_STATE(964)] = 51247, - [SMALL_STATE(965)] = 51304, - [SMALL_STATE(966)] = 51361, - [SMALL_STATE(967)] = 51418, - [SMALL_STATE(968)] = 51475, - [SMALL_STATE(969)] = 51532, - [SMALL_STATE(970)] = 51589, - [SMALL_STATE(971)] = 51646, - [SMALL_STATE(972)] = 51703, - [SMALL_STATE(973)] = 51760, - [SMALL_STATE(974)] = 51817, - [SMALL_STATE(975)] = 51874, - [SMALL_STATE(976)] = 51931, - [SMALL_STATE(977)] = 51988, - [SMALL_STATE(978)] = 52045, - [SMALL_STATE(979)] = 52102, - [SMALL_STATE(980)] = 52159, - [SMALL_STATE(981)] = 52216, - [SMALL_STATE(982)] = 52273, - [SMALL_STATE(983)] = 52330, - [SMALL_STATE(984)] = 52387, - [SMALL_STATE(985)] = 52444, - [SMALL_STATE(986)] = 52501, - [SMALL_STATE(987)] = 52558, - [SMALL_STATE(988)] = 52615, - [SMALL_STATE(989)] = 52672, - [SMALL_STATE(990)] = 52729, - [SMALL_STATE(991)] = 52786, - [SMALL_STATE(992)] = 52843, - [SMALL_STATE(993)] = 52900, - [SMALL_STATE(994)] = 52957, - [SMALL_STATE(995)] = 53014, - [SMALL_STATE(996)] = 53071, - [SMALL_STATE(997)] = 53128, - [SMALL_STATE(998)] = 53185, - [SMALL_STATE(999)] = 53242, - [SMALL_STATE(1000)] = 53299, - [SMALL_STATE(1001)] = 53356, - [SMALL_STATE(1002)] = 53413, - [SMALL_STATE(1003)] = 53470, - [SMALL_STATE(1004)] = 53527, - [SMALL_STATE(1005)] = 53584, - [SMALL_STATE(1006)] = 53641, - [SMALL_STATE(1007)] = 53698, - [SMALL_STATE(1008)] = 53752, - [SMALL_STATE(1009)] = 53803, - [SMALL_STATE(1010)] = 53851, - [SMALL_STATE(1011)] = 53899, - [SMALL_STATE(1012)] = 53944, - [SMALL_STATE(1013)] = 53991, - [SMALL_STATE(1014)] = 54033, - [SMALL_STATE(1015)] = 54077, - [SMALL_STATE(1016)] = 54121, - [SMALL_STATE(1017)] = 54165, - [SMALL_STATE(1018)] = 54209, - [SMALL_STATE(1019)] = 54251, - [SMALL_STATE(1020)] = 54293, - [SMALL_STATE(1021)] = 54337, - [SMALL_STATE(1022)] = 54379, - [SMALL_STATE(1023)] = 54423, - [SMALL_STATE(1024)] = 54467, - [SMALL_STATE(1025)] = 54511, - [SMALL_STATE(1026)] = 54553, - [SMALL_STATE(1027)] = 54597, - [SMALL_STATE(1028)] = 54641, - [SMALL_STATE(1029)] = 54685, - [SMALL_STATE(1030)] = 54729, - [SMALL_STATE(1031)] = 54770, - [SMALL_STATE(1032)] = 54811, - [SMALL_STATE(1033)] = 54852, - [SMALL_STATE(1034)] = 54893, - [SMALL_STATE(1035)] = 54932, - [SMALL_STATE(1036)] = 54973, - [SMALL_STATE(1037)] = 55014, - [SMALL_STATE(1038)] = 55055, - [SMALL_STATE(1039)] = 55094, - [SMALL_STATE(1040)] = 55135, - [SMALL_STATE(1041)] = 55176, - [SMALL_STATE(1042)] = 55217, - [SMALL_STATE(1043)] = 55254, - [SMALL_STATE(1044)] = 55295, - [SMALL_STATE(1045)] = 55334, - [SMALL_STATE(1046)] = 55375, - [SMALL_STATE(1047)] = 55414, - [SMALL_STATE(1048)] = 55455, - [SMALL_STATE(1049)] = 55494, - [SMALL_STATE(1050)] = 55533, - [SMALL_STATE(1051)] = 55574, - [SMALL_STATE(1052)] = 55615, - [SMALL_STATE(1053)] = 55656, - [SMALL_STATE(1054)] = 55693, - [SMALL_STATE(1055)] = 55734, - [SMALL_STATE(1056)] = 55775, - [SMALL_STATE(1057)] = 55816, - [SMALL_STATE(1058)] = 55857, - [SMALL_STATE(1059)] = 55896, - [SMALL_STATE(1060)] = 55935, - [SMALL_STATE(1061)] = 55976, - [SMALL_STATE(1062)] = 56017, - [SMALL_STATE(1063)] = 56058, - [SMALL_STATE(1064)] = 56099, - [SMALL_STATE(1065)] = 56140, - [SMALL_STATE(1066)] = 56181, - [SMALL_STATE(1067)] = 56220, - [SMALL_STATE(1068)] = 56261, - [SMALL_STATE(1069)] = 56300, - [SMALL_STATE(1070)] = 56339, - [SMALL_STATE(1071)] = 56380, - [SMALL_STATE(1072)] = 56421, - [SMALL_STATE(1073)] = 56462, - [SMALL_STATE(1074)] = 56503, - [SMALL_STATE(1075)] = 56544, - [SMALL_STATE(1076)] = 56583, - [SMALL_STATE(1077)] = 56624, - [SMALL_STATE(1078)] = 56663, - [SMALL_STATE(1079)] = 56704, - [SMALL_STATE(1080)] = 56745, - [SMALL_STATE(1081)] = 56784, - [SMALL_STATE(1082)] = 56825, - [SMALL_STATE(1083)] = 56866, - [SMALL_STATE(1084)] = 56907, - [SMALL_STATE(1085)] = 56948, - [SMALL_STATE(1086)] = 56989, - [SMALL_STATE(1087)] = 57030, - [SMALL_STATE(1088)] = 57071, - [SMALL_STATE(1089)] = 57112, - [SMALL_STATE(1090)] = 57153, - [SMALL_STATE(1091)] = 57194, - [SMALL_STATE(1092)] = 57235, - [SMALL_STATE(1093)] = 57276, - [SMALL_STATE(1094)] = 57317, - [SMALL_STATE(1095)] = 57358, - [SMALL_STATE(1096)] = 57397, - [SMALL_STATE(1097)] = 57438, - [SMALL_STATE(1098)] = 57479, - [SMALL_STATE(1099)] = 57520, - [SMALL_STATE(1100)] = 57561, - [SMALL_STATE(1101)] = 57602, - [SMALL_STATE(1102)] = 57643, - [SMALL_STATE(1103)] = 57684, - [SMALL_STATE(1104)] = 57725, - [SMALL_STATE(1105)] = 57764, - [SMALL_STATE(1106)] = 57805, - [SMALL_STATE(1107)] = 57846, - [SMALL_STATE(1108)] = 57887, - [SMALL_STATE(1109)] = 57928, - [SMALL_STATE(1110)] = 57969, - [SMALL_STATE(1111)] = 58010, - [SMALL_STATE(1112)] = 58051, - [SMALL_STATE(1113)] = 58092, - [SMALL_STATE(1114)] = 58133, - [SMALL_STATE(1115)] = 58174, - [SMALL_STATE(1116)] = 58215, - [SMALL_STATE(1117)] = 58256, - [SMALL_STATE(1118)] = 58297, - [SMALL_STATE(1119)] = 58338, - [SMALL_STATE(1120)] = 58379, - [SMALL_STATE(1121)] = 58420, - [SMALL_STATE(1122)] = 58461, - [SMALL_STATE(1123)] = 58502, - [SMALL_STATE(1124)] = 58543, - [SMALL_STATE(1125)] = 58584, - [SMALL_STATE(1126)] = 58625, - [SMALL_STATE(1127)] = 58666, - [SMALL_STATE(1128)] = 58707, - [SMALL_STATE(1129)] = 58748, - [SMALL_STATE(1130)] = 58789, - [SMALL_STATE(1131)] = 58830, - [SMALL_STATE(1132)] = 58871, - [SMALL_STATE(1133)] = 58912, - [SMALL_STATE(1134)] = 58953, - [SMALL_STATE(1135)] = 58994, - [SMALL_STATE(1136)] = 59035, - [SMALL_STATE(1137)] = 59076, - [SMALL_STATE(1138)] = 59115, - [SMALL_STATE(1139)] = 59154, - [SMALL_STATE(1140)] = 59195, - [SMALL_STATE(1141)] = 59236, - [SMALL_STATE(1142)] = 59277, - [SMALL_STATE(1143)] = 59318, - [SMALL_STATE(1144)] = 59359, - [SMALL_STATE(1145)] = 59400, - [SMALL_STATE(1146)] = 59441, - [SMALL_STATE(1147)] = 59482, - [SMALL_STATE(1148)] = 59523, - [SMALL_STATE(1149)] = 59564, - [SMALL_STATE(1150)] = 59605, - [SMALL_STATE(1151)] = 59646, - [SMALL_STATE(1152)] = 59680, - [SMALL_STATE(1153)] = 59714, - [SMALL_STATE(1154)] = 59737, - [SMALL_STATE(1155)] = 59762, - [SMALL_STATE(1156)] = 59785, - [SMALL_STATE(1157)] = 59813, - [SMALL_STATE(1158)] = 59835, - [SMALL_STATE(1159)] = 59863, - [SMALL_STATE(1160)] = 59891, - [SMALL_STATE(1161)] = 59913, - [SMALL_STATE(1162)] = 59941, - [SMALL_STATE(1163)] = 59963, - [SMALL_STATE(1164)] = 59988, - [SMALL_STATE(1165)] = 60013, - [SMALL_STATE(1166)] = 60038, - [SMALL_STATE(1167)] = 60063, - [SMALL_STATE(1168)] = 60088, - [SMALL_STATE(1169)] = 60113, - [SMALL_STATE(1170)] = 60138, - [SMALL_STATE(1171)] = 60159, - [SMALL_STATE(1172)] = 60184, - [SMALL_STATE(1173)] = 60209, - [SMALL_STATE(1174)] = 60234, - [SMALL_STATE(1175)] = 60255, - [SMALL_STATE(1176)] = 60280, - [SMALL_STATE(1177)] = 60301, - [SMALL_STATE(1178)] = 60326, - [SMALL_STATE(1179)] = 60351, - [SMALL_STATE(1180)] = 60376, - [SMALL_STATE(1181)] = 60401, - [SMALL_STATE(1182)] = 60426, - [SMALL_STATE(1183)] = 60451, - [SMALL_STATE(1184)] = 60476, - [SMALL_STATE(1185)] = 60501, - [SMALL_STATE(1186)] = 60526, - [SMALL_STATE(1187)] = 60551, - [SMALL_STATE(1188)] = 60583, - [SMALL_STATE(1189)] = 60603, - [SMALL_STATE(1190)] = 60623, - [SMALL_STATE(1191)] = 60655, - [SMALL_STATE(1192)] = 60687, - [SMALL_STATE(1193)] = 60719, - [SMALL_STATE(1194)] = 60751, - [SMALL_STATE(1195)] = 60783, - [SMALL_STATE(1196)] = 60815, - [SMALL_STATE(1197)] = 60847, - [SMALL_STATE(1198)] = 60879, - [SMALL_STATE(1199)] = 60911, - [SMALL_STATE(1200)] = 60943, - [SMALL_STATE(1201)] = 60975, - [SMALL_STATE(1202)] = 61007, - [SMALL_STATE(1203)] = 61039, - [SMALL_STATE(1204)] = 61071, - [SMALL_STATE(1205)] = 61103, - [SMALL_STATE(1206)] = 61135, - [SMALL_STATE(1207)] = 61167, - [SMALL_STATE(1208)] = 61199, - [SMALL_STATE(1209)] = 61231, - [SMALL_STATE(1210)] = 61251, - [SMALL_STATE(1211)] = 61283, - [SMALL_STATE(1212)] = 61315, - [SMALL_STATE(1213)] = 61347, - [SMALL_STATE(1214)] = 61379, - [SMALL_STATE(1215)] = 61398, - [SMALL_STATE(1216)] = 61417, - [SMALL_STATE(1217)] = 61436, - [SMALL_STATE(1218)] = 61455, - [SMALL_STATE(1219)] = 61474, - [SMALL_STATE(1220)] = 61493, - [SMALL_STATE(1221)] = 61512, - [SMALL_STATE(1222)] = 61531, - [SMALL_STATE(1223)] = 61550, - [SMALL_STATE(1224)] = 61569, - [SMALL_STATE(1225)] = 61588, - [SMALL_STATE(1226)] = 61607, - [SMALL_STATE(1227)] = 61634, - [SMALL_STATE(1228)] = 61653, - [SMALL_STATE(1229)] = 61672, - [SMALL_STATE(1230)] = 61691, - [SMALL_STATE(1231)] = 61710, - [SMALL_STATE(1232)] = 61736, - [SMALL_STATE(1233)] = 61762, - [SMALL_STATE(1234)] = 61788, - [SMALL_STATE(1235)] = 61814, - [SMALL_STATE(1236)] = 61840, - [SMALL_STATE(1237)] = 61866, - [SMALL_STATE(1238)] = 61892, - [SMALL_STATE(1239)] = 61918, - [SMALL_STATE(1240)] = 61944, - [SMALL_STATE(1241)] = 61970, - [SMALL_STATE(1242)] = 61996, - [SMALL_STATE(1243)] = 62022, - [SMALL_STATE(1244)] = 62045, - [SMALL_STATE(1245)] = 62072, - [SMALL_STATE(1246)] = 62099, - [SMALL_STATE(1247)] = 62126, - [SMALL_STATE(1248)] = 62153, - [SMALL_STATE(1249)] = 62180, - [SMALL_STATE(1250)] = 62207, - [SMALL_STATE(1251)] = 62234, - [SMALL_STATE(1252)] = 62261, - [SMALL_STATE(1253)] = 62288, - [SMALL_STATE(1254)] = 62315, - [SMALL_STATE(1255)] = 62342, - [SMALL_STATE(1256)] = 62369, - [SMALL_STATE(1257)] = 62392, - [SMALL_STATE(1258)] = 62419, - [SMALL_STATE(1259)] = 62441, - [SMALL_STATE(1260)] = 62465, - [SMALL_STATE(1261)] = 62489, - [SMALL_STATE(1262)] = 62513, - [SMALL_STATE(1263)] = 62535, - [SMALL_STATE(1264)] = 62557, - [SMALL_STATE(1265)] = 62581, - [SMALL_STATE(1266)] = 62605, - [SMALL_STATE(1267)] = 62627, - [SMALL_STATE(1268)] = 62651, - [SMALL_STATE(1269)] = 62675, - [SMALL_STATE(1270)] = 62697, - [SMALL_STATE(1271)] = 62721, - [SMALL_STATE(1272)] = 62743, - [SMALL_STATE(1273)] = 62765, - [SMALL_STATE(1274)] = 62787, - [SMALL_STATE(1275)] = 62809, - [SMALL_STATE(1276)] = 62831, - [SMALL_STATE(1277)] = 62853, - [SMALL_STATE(1278)] = 62877, - [SMALL_STATE(1279)] = 62899, - [SMALL_STATE(1280)] = 62923, - [SMALL_STATE(1281)] = 62945, - [SMALL_STATE(1282)] = 62967, - [SMALL_STATE(1283)] = 62989, - [SMALL_STATE(1284)] = 63011, - [SMALL_STATE(1285)] = 63035, - [SMALL_STATE(1286)] = 63057, - [SMALL_STATE(1287)] = 63081, - [SMALL_STATE(1288)] = 63103, - [SMALL_STATE(1289)] = 63125, - [SMALL_STATE(1290)] = 63147, - [SMALL_STATE(1291)] = 63169, - [SMALL_STATE(1292)] = 63191, - [SMALL_STATE(1293)] = 63213, - [SMALL_STATE(1294)] = 63235, - [SMALL_STATE(1295)] = 63252, - [SMALL_STATE(1296)] = 63268, - [SMALL_STATE(1297)] = 63286, - [SMALL_STATE(1298)] = 63304, - [SMALL_STATE(1299)] = 63322, - [SMALL_STATE(1300)] = 63340, - [SMALL_STATE(1301)] = 63358, - [SMALL_STATE(1302)] = 63376, - [SMALL_STATE(1303)] = 63394, - [SMALL_STATE(1304)] = 63412, - [SMALL_STATE(1305)] = 63430, - [SMALL_STATE(1306)] = 63448, - [SMALL_STATE(1307)] = 63466, - [SMALL_STATE(1308)] = 63484, - [SMALL_STATE(1309)] = 63502, - [SMALL_STATE(1310)] = 63520, - [SMALL_STATE(1311)] = 63538, - [SMALL_STATE(1312)] = 63554, - [SMALL_STATE(1313)] = 63570, - [SMALL_STATE(1314)] = 63588, - [SMALL_STATE(1315)] = 63606, - [SMALL_STATE(1316)] = 63624, - [SMALL_STATE(1317)] = 63642, - [SMALL_STATE(1318)] = 63660, - [SMALL_STATE(1319)] = 63678, - [SMALL_STATE(1320)] = 63696, - [SMALL_STATE(1321)] = 63714, - [SMALL_STATE(1322)] = 63730, - [SMALL_STATE(1323)] = 63746, - [SMALL_STATE(1324)] = 63764, - [SMALL_STATE(1325)] = 63782, - [SMALL_STATE(1326)] = 63800, - [SMALL_STATE(1327)] = 63818, - [SMALL_STATE(1328)] = 63836, - [SMALL_STATE(1329)] = 63854, - [SMALL_STATE(1330)] = 63872, - [SMALL_STATE(1331)] = 63888, - [SMALL_STATE(1332)] = 63906, - [SMALL_STATE(1333)] = 63924, - [SMALL_STATE(1334)] = 63942, - [SMALL_STATE(1335)] = 63960, - [SMALL_STATE(1336)] = 63978, - [SMALL_STATE(1337)] = 63996, - [SMALL_STATE(1338)] = 64012, - [SMALL_STATE(1339)] = 64028, - [SMALL_STATE(1340)] = 64046, - [SMALL_STATE(1341)] = 64064, - [SMALL_STATE(1342)] = 64082, - [SMALL_STATE(1343)] = 64100, - [SMALL_STATE(1344)] = 64118, - [SMALL_STATE(1345)] = 64136, - [SMALL_STATE(1346)] = 64154, - [SMALL_STATE(1347)] = 64172, - [SMALL_STATE(1348)] = 64188, - [SMALL_STATE(1349)] = 64204, - [SMALL_STATE(1350)] = 64222, - [SMALL_STATE(1351)] = 64240, - [SMALL_STATE(1352)] = 64258, - [SMALL_STATE(1353)] = 64276, - [SMALL_STATE(1354)] = 64294, - [SMALL_STATE(1355)] = 64312, - [SMALL_STATE(1356)] = 64330, - [SMALL_STATE(1357)] = 64348, - [SMALL_STATE(1358)] = 64366, - [SMALL_STATE(1359)] = 64384, - [SMALL_STATE(1360)] = 64400, - [SMALL_STATE(1361)] = 64416, - [SMALL_STATE(1362)] = 64434, - [SMALL_STATE(1363)] = 64452, - [SMALL_STATE(1364)] = 64470, - [SMALL_STATE(1365)] = 64488, - [SMALL_STATE(1366)] = 64506, - [SMALL_STATE(1367)] = 64524, - [SMALL_STATE(1368)] = 64542, - [SMALL_STATE(1369)] = 64560, - [SMALL_STATE(1370)] = 64578, - [SMALL_STATE(1371)] = 64596, - [SMALL_STATE(1372)] = 64614, - [SMALL_STATE(1373)] = 64632, - [SMALL_STATE(1374)] = 64648, - [SMALL_STATE(1375)] = 64664, - [SMALL_STATE(1376)] = 64682, - [SMALL_STATE(1377)] = 64700, - [SMALL_STATE(1378)] = 64718, - [SMALL_STATE(1379)] = 64736, - [SMALL_STATE(1380)] = 64754, - [SMALL_STATE(1381)] = 64772, - [SMALL_STATE(1382)] = 64790, - [SMALL_STATE(1383)] = 64808, - [SMALL_STATE(1384)] = 64824, - [SMALL_STATE(1385)] = 64840, - [SMALL_STATE(1386)] = 64858, - [SMALL_STATE(1387)] = 64876, - [SMALL_STATE(1388)] = 64894, - [SMALL_STATE(1389)] = 64912, - [SMALL_STATE(1390)] = 64930, - [SMALL_STATE(1391)] = 64948, - [SMALL_STATE(1392)] = 64966, - [SMALL_STATE(1393)] = 64982, - [SMALL_STATE(1394)] = 65000, - [SMALL_STATE(1395)] = 65016, - [SMALL_STATE(1396)] = 65034, - [SMALL_STATE(1397)] = 65052, - [SMALL_STATE(1398)] = 65070, - [SMALL_STATE(1399)] = 65088, - [SMALL_STATE(1400)] = 65106, - [SMALL_STATE(1401)] = 65124, - [SMALL_STATE(1402)] = 65142, - [SMALL_STATE(1403)] = 65160, - [SMALL_STATE(1404)] = 65178, - [SMALL_STATE(1405)] = 65196, - [SMALL_STATE(1406)] = 65214, - [SMALL_STATE(1407)] = 65232, - [SMALL_STATE(1408)] = 65250, - [SMALL_STATE(1409)] = 65268, - [SMALL_STATE(1410)] = 65284, - [SMALL_STATE(1411)] = 65300, - [SMALL_STATE(1412)] = 65318, - [SMALL_STATE(1413)] = 65336, - [SMALL_STATE(1414)] = 65354, - [SMALL_STATE(1415)] = 65372, - [SMALL_STATE(1416)] = 65390, - [SMALL_STATE(1417)] = 65408, - [SMALL_STATE(1418)] = 65426, - [SMALL_STATE(1419)] = 65444, - [SMALL_STATE(1420)] = 65460, - [SMALL_STATE(1421)] = 65476, - [SMALL_STATE(1422)] = 65492, - [SMALL_STATE(1423)] = 65510, - [SMALL_STATE(1424)] = 65528, - [SMALL_STATE(1425)] = 65546, - [SMALL_STATE(1426)] = 65564, - [SMALL_STATE(1427)] = 65582, - [SMALL_STATE(1428)] = 65598, - [SMALL_STATE(1429)] = 65614, - [SMALL_STATE(1430)] = 65632, - [SMALL_STATE(1431)] = 65648, - [SMALL_STATE(1432)] = 65666, - [SMALL_STATE(1433)] = 65684, - [SMALL_STATE(1434)] = 65702, - [SMALL_STATE(1435)] = 65720, - [SMALL_STATE(1436)] = 65738, - [SMALL_STATE(1437)] = 65756, - [SMALL_STATE(1438)] = 65774, - [SMALL_STATE(1439)] = 65790, - [SMALL_STATE(1440)] = 65806, - [SMALL_STATE(1441)] = 65824, - [SMALL_STATE(1442)] = 65842, - [SMALL_STATE(1443)] = 65860, - [SMALL_STATE(1444)] = 65878, - [SMALL_STATE(1445)] = 65896, - [SMALL_STATE(1446)] = 65914, - [SMALL_STATE(1447)] = 65932, - [SMALL_STATE(1448)] = 65950, - [SMALL_STATE(1449)] = 65968, - [SMALL_STATE(1450)] = 65984, - [SMALL_STATE(1451)] = 66000, - [SMALL_STATE(1452)] = 66018, - [SMALL_STATE(1453)] = 66036, - [SMALL_STATE(1454)] = 66054, - [SMALL_STATE(1455)] = 66072, - [SMALL_STATE(1456)] = 66090, - [SMALL_STATE(1457)] = 66108, - [SMALL_STATE(1458)] = 66126, - [SMALL_STATE(1459)] = 66144, - [SMALL_STATE(1460)] = 66162, - [SMALL_STATE(1461)] = 66178, - [SMALL_STATE(1462)] = 66196, - [SMALL_STATE(1463)] = 66214, - [SMALL_STATE(1464)] = 66232, - [SMALL_STATE(1465)] = 66250, - [SMALL_STATE(1466)] = 66268, - [SMALL_STATE(1467)] = 66286, - [SMALL_STATE(1468)] = 66302, - [SMALL_STATE(1469)] = 66318, - [SMALL_STATE(1470)] = 66336, - [SMALL_STATE(1471)] = 66354, - [SMALL_STATE(1472)] = 66372, - [SMALL_STATE(1473)] = 66390, - [SMALL_STATE(1474)] = 66408, - [SMALL_STATE(1475)] = 66426, - [SMALL_STATE(1476)] = 66444, - [SMALL_STATE(1477)] = 66462, - [SMALL_STATE(1478)] = 66478, - [SMALL_STATE(1479)] = 66494, - [SMALL_STATE(1480)] = 66512, - [SMALL_STATE(1481)] = 66530, - [SMALL_STATE(1482)] = 66548, - [SMALL_STATE(1483)] = 66566, - [SMALL_STATE(1484)] = 66584, - [SMALL_STATE(1485)] = 66600, - [SMALL_STATE(1486)] = 66616, - [SMALL_STATE(1487)] = 66634, - [SMALL_STATE(1488)] = 66650, - [SMALL_STATE(1489)] = 66666, - [SMALL_STATE(1490)] = 66684, - [SMALL_STATE(1491)] = 66698, - [SMALL_STATE(1492)] = 66712, - [SMALL_STATE(1493)] = 66726, - [SMALL_STATE(1494)] = 66744, - [SMALL_STATE(1495)] = 66760, - [SMALL_STATE(1496)] = 66776, - [SMALL_STATE(1497)] = 66794, - [SMALL_STATE(1498)] = 66812, - [SMALL_STATE(1499)] = 66830, - [SMALL_STATE(1500)] = 66848, - [SMALL_STATE(1501)] = 66862, - [SMALL_STATE(1502)] = 66876, - [SMALL_STATE(1503)] = 66890, - [SMALL_STATE(1504)] = 66908, - [SMALL_STATE(1505)] = 66926, - [SMALL_STATE(1506)] = 66944, - [SMALL_STATE(1507)] = 66962, - [SMALL_STATE(1508)] = 66980, - [SMALL_STATE(1509)] = 66998, - [SMALL_STATE(1510)] = 67016, - [SMALL_STATE(1511)] = 67030, - [SMALL_STATE(1512)] = 67044, - [SMALL_STATE(1513)] = 67058, - [SMALL_STATE(1514)] = 67074, - [SMALL_STATE(1515)] = 67090, - [SMALL_STATE(1516)] = 67108, - [SMALL_STATE(1517)] = 67126, - [SMALL_STATE(1518)] = 67144, - [SMALL_STATE(1519)] = 67162, - [SMALL_STATE(1520)] = 67180, - [SMALL_STATE(1521)] = 67194, - [SMALL_STATE(1522)] = 67208, - [SMALL_STATE(1523)] = 67222, - [SMALL_STATE(1524)] = 67240, - [SMALL_STATE(1525)] = 67258, - [SMALL_STATE(1526)] = 67276, - [SMALL_STATE(1527)] = 67290, - [SMALL_STATE(1528)] = 67304, - [SMALL_STATE(1529)] = 67318, - [SMALL_STATE(1530)] = 67336, - [SMALL_STATE(1531)] = 67350, - [SMALL_STATE(1532)] = 67366, - [SMALL_STATE(1533)] = 67384, - [SMALL_STATE(1534)] = 67402, - [SMALL_STATE(1535)] = 67416, - [SMALL_STATE(1536)] = 67430, - [SMALL_STATE(1537)] = 67444, - [SMALL_STATE(1538)] = 67462, - [SMALL_STATE(1539)] = 67478, - [SMALL_STATE(1540)] = 67496, - [SMALL_STATE(1541)] = 67514, - [SMALL_STATE(1542)] = 67528, - [SMALL_STATE(1543)] = 67542, - [SMALL_STATE(1544)] = 67556, - [SMALL_STATE(1545)] = 67574, - [SMALL_STATE(1546)] = 67588, - [SMALL_STATE(1547)] = 67602, - [SMALL_STATE(1548)] = 67616, - [SMALL_STATE(1549)] = 67630, - [SMALL_STATE(1550)] = 67648, - [SMALL_STATE(1551)] = 67664, - [SMALL_STATE(1552)] = 67682, - [SMALL_STATE(1553)] = 67700, - [SMALL_STATE(1554)] = 67718, - [SMALL_STATE(1555)] = 67736, - [SMALL_STATE(1556)] = 67750, - [SMALL_STATE(1557)] = 67764, - [SMALL_STATE(1558)] = 67778, - [SMALL_STATE(1559)] = 67794, - [SMALL_STATE(1560)] = 67810, - [SMALL_STATE(1561)] = 67828, - [SMALL_STATE(1562)] = 67846, - [SMALL_STATE(1563)] = 67864, - [SMALL_STATE(1564)] = 67882, - [SMALL_STATE(1565)] = 67900, - [SMALL_STATE(1566)] = 67918, - [SMALL_STATE(1567)] = 67932, - [SMALL_STATE(1568)] = 67946, - [SMALL_STATE(1569)] = 67960, - [SMALL_STATE(1570)] = 67978, - [SMALL_STATE(1571)] = 67996, - [SMALL_STATE(1572)] = 68012, - [SMALL_STATE(1573)] = 68030, - [SMALL_STATE(1574)] = 68046, - [SMALL_STATE(1575)] = 68062, - [SMALL_STATE(1576)] = 68076, - [SMALL_STATE(1577)] = 68090, - [SMALL_STATE(1578)] = 68104, - [SMALL_STATE(1579)] = 68122, - [SMALL_STATE(1580)] = 68140, - [SMALL_STATE(1581)] = 68158, - [SMALL_STATE(1582)] = 68176, - [SMALL_STATE(1583)] = 68194, - [SMALL_STATE(1584)] = 68212, - [SMALL_STATE(1585)] = 68230, - [SMALL_STATE(1586)] = 68246, - [SMALL_STATE(1587)] = 68262, - [SMALL_STATE(1588)] = 68280, - [SMALL_STATE(1589)] = 68298, - [SMALL_STATE(1590)] = 68314, - [SMALL_STATE(1591)] = 68332, - [SMALL_STATE(1592)] = 68350, - [SMALL_STATE(1593)] = 68368, - [SMALL_STATE(1594)] = 68384, - [SMALL_STATE(1595)] = 68402, - [SMALL_STATE(1596)] = 68418, - [SMALL_STATE(1597)] = 68434, - [SMALL_STATE(1598)] = 68450, - [SMALL_STATE(1599)] = 68468, - [SMALL_STATE(1600)] = 68486, - [SMALL_STATE(1601)] = 68504, - [SMALL_STATE(1602)] = 68522, - [SMALL_STATE(1603)] = 68540, - [SMALL_STATE(1604)] = 68558, - [SMALL_STATE(1605)] = 68576, - [SMALL_STATE(1606)] = 68594, - [SMALL_STATE(1607)] = 68612, - [SMALL_STATE(1608)] = 68630, - [SMALL_STATE(1609)] = 68646, - [SMALL_STATE(1610)] = 68664, - [SMALL_STATE(1611)] = 68678, - [SMALL_STATE(1612)] = 68694, - [SMALL_STATE(1613)] = 68712, - [SMALL_STATE(1614)] = 68730, - [SMALL_STATE(1615)] = 68746, - [SMALL_STATE(1616)] = 68762, - [SMALL_STATE(1617)] = 68780, - [SMALL_STATE(1618)] = 68798, - [SMALL_STATE(1619)] = 68816, - [SMALL_STATE(1620)] = 68834, - [SMALL_STATE(1621)] = 68852, - [SMALL_STATE(1622)] = 68870, - [SMALL_STATE(1623)] = 68888, - [SMALL_STATE(1624)] = 68906, - [SMALL_STATE(1625)] = 68924, - [SMALL_STATE(1626)] = 68940, - [SMALL_STATE(1627)] = 68956, - [SMALL_STATE(1628)] = 68974, - [SMALL_STATE(1629)] = 68992, - [SMALL_STATE(1630)] = 69010, - [SMALL_STATE(1631)] = 69028, - [SMALL_STATE(1632)] = 69046, - [SMALL_STATE(1633)] = 69064, - [SMALL_STATE(1634)] = 69082, - [SMALL_STATE(1635)] = 69100, - [SMALL_STATE(1636)] = 69118, - [SMALL_STATE(1637)] = 69134, - [SMALL_STATE(1638)] = 69150, - [SMALL_STATE(1639)] = 69168, - [SMALL_STATE(1640)] = 69183, - [SMALL_STATE(1641)] = 69198, - [SMALL_STATE(1642)] = 69213, - [SMALL_STATE(1643)] = 69226, - [SMALL_STATE(1644)] = 69241, - [SMALL_STATE(1645)] = 69256, - [SMALL_STATE(1646)] = 69271, - [SMALL_STATE(1647)] = 69286, - [SMALL_STATE(1648)] = 69301, - [SMALL_STATE(1649)] = 69316, - [SMALL_STATE(1650)] = 69327, - [SMALL_STATE(1651)] = 69342, - [SMALL_STATE(1652)] = 69357, - [SMALL_STATE(1653)] = 69368, - [SMALL_STATE(1654)] = 69379, - [SMALL_STATE(1655)] = 69390, - [SMALL_STATE(1656)] = 69405, - [SMALL_STATE(1657)] = 69420, - [SMALL_STATE(1658)] = 69435, - [SMALL_STATE(1659)] = 69450, - [SMALL_STATE(1660)] = 69465, - [SMALL_STATE(1661)] = 69480, - [SMALL_STATE(1662)] = 69495, - [SMALL_STATE(1663)] = 69510, - [SMALL_STATE(1664)] = 69525, - [SMALL_STATE(1665)] = 69536, - [SMALL_STATE(1666)] = 69551, - [SMALL_STATE(1667)] = 69566, - [SMALL_STATE(1668)] = 69581, - [SMALL_STATE(1669)] = 69596, - [SMALL_STATE(1670)] = 69608, - [SMALL_STATE(1671)] = 69620, - [SMALL_STATE(1672)] = 69630, - [SMALL_STATE(1673)] = 69642, - [SMALL_STATE(1674)] = 69654, - [SMALL_STATE(1675)] = 69666, - [SMALL_STATE(1676)] = 69678, - [SMALL_STATE(1677)] = 69690, - [SMALL_STATE(1678)] = 69702, - [SMALL_STATE(1679)] = 69714, - [SMALL_STATE(1680)] = 69726, - [SMALL_STATE(1681)] = 69738, - [SMALL_STATE(1682)] = 69750, - [SMALL_STATE(1683)] = 69762, - [SMALL_STATE(1684)] = 69774, - [SMALL_STATE(1685)] = 69786, - [SMALL_STATE(1686)] = 69796, - [SMALL_STATE(1687)] = 69806, - [SMALL_STATE(1688)] = 69818, - [SMALL_STATE(1689)] = 69830, - [SMALL_STATE(1690)] = 69840, - [SMALL_STATE(1691)] = 69852, - [SMALL_STATE(1692)] = 69862, - [SMALL_STATE(1693)] = 69874, - [SMALL_STATE(1694)] = 69886, - [SMALL_STATE(1695)] = 69898, - [SMALL_STATE(1696)] = 69910, - [SMALL_STATE(1697)] = 69922, - [SMALL_STATE(1698)] = 69934, - [SMALL_STATE(1699)] = 69946, - [SMALL_STATE(1700)] = 69958, - [SMALL_STATE(1701)] = 69970, - [SMALL_STATE(1702)] = 69979, - [SMALL_STATE(1703)] = 69988, - [SMALL_STATE(1704)] = 69997, - [SMALL_STATE(1705)] = 70006, - [SMALL_STATE(1706)] = 70015, - [SMALL_STATE(1707)] = 70024, - [SMALL_STATE(1708)] = 70033, - [SMALL_STATE(1709)] = 70042, - [SMALL_STATE(1710)] = 70051, - [SMALL_STATE(1711)] = 70060, - [SMALL_STATE(1712)] = 70069, - [SMALL_STATE(1713)] = 70078, - [SMALL_STATE(1714)] = 70087, - [SMALL_STATE(1715)] = 70096, - [SMALL_STATE(1716)] = 70105, - [SMALL_STATE(1717)] = 70114, - [SMALL_STATE(1718)] = 70123, - [SMALL_STATE(1719)] = 70132, - [SMALL_STATE(1720)] = 70141, - [SMALL_STATE(1721)] = 70150, - [SMALL_STATE(1722)] = 70159, - [SMALL_STATE(1723)] = 70168, - [SMALL_STATE(1724)] = 70177, - [SMALL_STATE(1725)] = 70186, - [SMALL_STATE(1726)] = 70195, - [SMALL_STATE(1727)] = 70204, - [SMALL_STATE(1728)] = 70213, - [SMALL_STATE(1729)] = 70222, - [SMALL_STATE(1730)] = 70231, - [SMALL_STATE(1731)] = 70240, - [SMALL_STATE(1732)] = 70249, - [SMALL_STATE(1733)] = 70258, - [SMALL_STATE(1734)] = 70267, - [SMALL_STATE(1735)] = 70276, - [SMALL_STATE(1736)] = 70285, - [SMALL_STATE(1737)] = 70294, - [SMALL_STATE(1738)] = 70303, - [SMALL_STATE(1739)] = 70312, - [SMALL_STATE(1740)] = 70321, - [SMALL_STATE(1741)] = 70330, - [SMALL_STATE(1742)] = 70339, - [SMALL_STATE(1743)] = 70348, - [SMALL_STATE(1744)] = 70357, - [SMALL_STATE(1745)] = 70366, - [SMALL_STATE(1746)] = 70375, - [SMALL_STATE(1747)] = 70384, - [SMALL_STATE(1748)] = 70393, - [SMALL_STATE(1749)] = 70402, - [SMALL_STATE(1750)] = 70411, - [SMALL_STATE(1751)] = 70420, - [SMALL_STATE(1752)] = 70429, - [SMALL_STATE(1753)] = 70438, - [SMALL_STATE(1754)] = 70447, - [SMALL_STATE(1755)] = 70456, - [SMALL_STATE(1756)] = 70465, - [SMALL_STATE(1757)] = 70474, - [SMALL_STATE(1758)] = 70483, - [SMALL_STATE(1759)] = 70492, - [SMALL_STATE(1760)] = 70501, - [SMALL_STATE(1761)] = 70510, - [SMALL_STATE(1762)] = 70519, - [SMALL_STATE(1763)] = 70528, - [SMALL_STATE(1764)] = 70537, - [SMALL_STATE(1765)] = 70546, - [SMALL_STATE(1766)] = 70555, - [SMALL_STATE(1767)] = 70564, - [SMALL_STATE(1768)] = 70573, - [SMALL_STATE(1769)] = 70582, - [SMALL_STATE(1770)] = 70591, - [SMALL_STATE(1771)] = 70600, - [SMALL_STATE(1772)] = 70609, - [SMALL_STATE(1773)] = 70618, - [SMALL_STATE(1774)] = 70627, - [SMALL_STATE(1775)] = 70636, - [SMALL_STATE(1776)] = 70645, - [SMALL_STATE(1777)] = 70654, - [SMALL_STATE(1778)] = 70663, - [SMALL_STATE(1779)] = 70672, - [SMALL_STATE(1780)] = 70681, - [SMALL_STATE(1781)] = 70690, - [SMALL_STATE(1782)] = 70699, - [SMALL_STATE(1783)] = 70708, - [SMALL_STATE(1784)] = 70717, - [SMALL_STATE(1785)] = 70726, - [SMALL_STATE(1786)] = 70735, - [SMALL_STATE(1787)] = 70744, - [SMALL_STATE(1788)] = 70753, - [SMALL_STATE(1789)] = 70762, - [SMALL_STATE(1790)] = 70771, - [SMALL_STATE(1791)] = 70780, - [SMALL_STATE(1792)] = 70789, - [SMALL_STATE(1793)] = 70798, - [SMALL_STATE(1794)] = 70807, - [SMALL_STATE(1795)] = 70816, - [SMALL_STATE(1796)] = 70825, - [SMALL_STATE(1797)] = 70834, - [SMALL_STATE(1798)] = 70843, - [SMALL_STATE(1799)] = 70852, - [SMALL_STATE(1800)] = 70861, - [SMALL_STATE(1801)] = 70870, - [SMALL_STATE(1802)] = 70879, - [SMALL_STATE(1803)] = 70888, - [SMALL_STATE(1804)] = 70897, - [SMALL_STATE(1805)] = 70906, - [SMALL_STATE(1806)] = 70915, - [SMALL_STATE(1807)] = 70924, - [SMALL_STATE(1808)] = 70933, - [SMALL_STATE(1809)] = 70942, - [SMALL_STATE(1810)] = 70951, - [SMALL_STATE(1811)] = 70960, - [SMALL_STATE(1812)] = 70969, - [SMALL_STATE(1813)] = 70978, - [SMALL_STATE(1814)] = 70987, - [SMALL_STATE(1815)] = 70996, - [SMALL_STATE(1816)] = 71005, - [SMALL_STATE(1817)] = 71014, - [SMALL_STATE(1818)] = 71023, - [SMALL_STATE(1819)] = 71032, - [SMALL_STATE(1820)] = 71041, - [SMALL_STATE(1821)] = 71050, - [SMALL_STATE(1822)] = 71059, - [SMALL_STATE(1823)] = 71068, - [SMALL_STATE(1824)] = 71077, - [SMALL_STATE(1825)] = 71086, - [SMALL_STATE(1826)] = 71095, - [SMALL_STATE(1827)] = 71104, - [SMALL_STATE(1828)] = 71113, - [SMALL_STATE(1829)] = 71122, - [SMALL_STATE(1830)] = 71131, - [SMALL_STATE(1831)] = 71140, - [SMALL_STATE(1832)] = 71149, - [SMALL_STATE(1833)] = 71158, - [SMALL_STATE(1834)] = 71167, - [SMALL_STATE(1835)] = 71176, - [SMALL_STATE(1836)] = 71185, - [SMALL_STATE(1837)] = 71194, - [SMALL_STATE(1838)] = 71203, - [SMALL_STATE(1839)] = 71212, - [SMALL_STATE(1840)] = 71221, - [SMALL_STATE(1841)] = 71230, - [SMALL_STATE(1842)] = 71239, - [SMALL_STATE(1843)] = 71248, - [SMALL_STATE(1844)] = 71257, - [SMALL_STATE(1845)] = 71266, - [SMALL_STATE(1846)] = 71275, - [SMALL_STATE(1847)] = 71284, - [SMALL_STATE(1848)] = 71293, - [SMALL_STATE(1849)] = 71302, - [SMALL_STATE(1850)] = 71311, - [SMALL_STATE(1851)] = 71320, - [SMALL_STATE(1852)] = 71329, - [SMALL_STATE(1853)] = 71338, - [SMALL_STATE(1854)] = 71347, - [SMALL_STATE(1855)] = 71356, - [SMALL_STATE(1856)] = 71365, - [SMALL_STATE(1857)] = 71374, - [SMALL_STATE(1858)] = 71383, - [SMALL_STATE(1859)] = 71392, - [SMALL_STATE(1860)] = 71401, - [SMALL_STATE(1861)] = 71410, - [SMALL_STATE(1862)] = 71419, - [SMALL_STATE(1863)] = 71428, - [SMALL_STATE(1864)] = 71437, - [SMALL_STATE(1865)] = 71446, - [SMALL_STATE(1866)] = 71455, - [SMALL_STATE(1867)] = 71464, - [SMALL_STATE(1868)] = 71473, - [SMALL_STATE(1869)] = 71482, - [SMALL_STATE(1870)] = 71491, - [SMALL_STATE(1871)] = 71500, - [SMALL_STATE(1872)] = 71509, - [SMALL_STATE(1873)] = 71518, - [SMALL_STATE(1874)] = 71527, - [SMALL_STATE(1875)] = 71536, - [SMALL_STATE(1876)] = 71545, - [SMALL_STATE(1877)] = 71554, - [SMALL_STATE(1878)] = 71563, - [SMALL_STATE(1879)] = 71572, - [SMALL_STATE(1880)] = 71581, + [SMALL_STATE(8)] = 474, + [SMALL_STATE(9)] = 553, + [SMALL_STATE(10)] = 678, + [SMALL_STATE(11)] = 803, + [SMALL_STATE(12)] = 921, + [SMALL_STATE(13)] = 1039, + [SMALL_STATE(14)] = 1157, + [SMALL_STATE(15)] = 1275, + [SMALL_STATE(16)] = 1393, + [SMALL_STATE(17)] = 1511, + [SMALL_STATE(18)] = 1629, + [SMALL_STATE(19)] = 1747, + [SMALL_STATE(20)] = 1865, + [SMALL_STATE(21)] = 1983, + [SMALL_STATE(22)] = 2101, + [SMALL_STATE(23)] = 2219, + [SMALL_STATE(24)] = 2337, + [SMALL_STATE(25)] = 2455, + [SMALL_STATE(26)] = 2573, + [SMALL_STATE(27)] = 2691, + [SMALL_STATE(28)] = 2809, + [SMALL_STATE(29)] = 2927, + [SMALL_STATE(30)] = 3045, + [SMALL_STATE(31)] = 3163, + [SMALL_STATE(32)] = 3281, + [SMALL_STATE(33)] = 3399, + [SMALL_STATE(34)] = 3517, + [SMALL_STATE(35)] = 3635, + [SMALL_STATE(36)] = 3753, + [SMALL_STATE(37)] = 3871, + [SMALL_STATE(38)] = 3980, + [SMALL_STATE(39)] = 4089, + [SMALL_STATE(40)] = 4196, + [SMALL_STATE(41)] = 4303, + [SMALL_STATE(42)] = 4412, + [SMALL_STATE(43)] = 4519, + [SMALL_STATE(44)] = 4624, + [SMALL_STATE(45)] = 4729, + [SMALL_STATE(46)] = 4834, + [SMALL_STATE(47)] = 4939, + [SMALL_STATE(48)] = 5044, + [SMALL_STATE(49)] = 5149, + [SMALL_STATE(50)] = 5254, + [SMALL_STATE(51)] = 5359, + [SMALL_STATE(52)] = 5464, + [SMALL_STATE(53)] = 5569, + [SMALL_STATE(54)] = 5674, + [SMALL_STATE(55)] = 5779, + [SMALL_STATE(56)] = 5884, + [SMALL_STATE(57)] = 5989, + [SMALL_STATE(58)] = 6094, + [SMALL_STATE(59)] = 6199, + [SMALL_STATE(60)] = 6304, + [SMALL_STATE(61)] = 6409, + [SMALL_STATE(62)] = 6514, + [SMALL_STATE(63)] = 6619, + [SMALL_STATE(64)] = 6724, + [SMALL_STATE(65)] = 6829, + [SMALL_STATE(66)] = 6934, + [SMALL_STATE(67)] = 7039, + [SMALL_STATE(68)] = 7144, + [SMALL_STATE(69)] = 7249, + [SMALL_STATE(70)] = 7354, + [SMALL_STATE(71)] = 7459, + [SMALL_STATE(72)] = 7564, + [SMALL_STATE(73)] = 7669, + [SMALL_STATE(74)] = 7774, + [SMALL_STATE(75)] = 7879, + [SMALL_STATE(76)] = 7984, + [SMALL_STATE(77)] = 8089, + [SMALL_STATE(78)] = 8194, + [SMALL_STATE(79)] = 8299, + [SMALL_STATE(80)] = 8404, + [SMALL_STATE(81)] = 8509, + [SMALL_STATE(82)] = 8614, + [SMALL_STATE(83)] = 8719, + [SMALL_STATE(84)] = 8824, + [SMALL_STATE(85)] = 8929, + [SMALL_STATE(86)] = 9034, + [SMALL_STATE(87)] = 9139, + [SMALL_STATE(88)] = 9244, + [SMALL_STATE(89)] = 9349, + [SMALL_STATE(90)] = 9454, + [SMALL_STATE(91)] = 9559, + [SMALL_STATE(92)] = 9664, + [SMALL_STATE(93)] = 9769, + [SMALL_STATE(94)] = 9874, + [SMALL_STATE(95)] = 9979, + [SMALL_STATE(96)] = 10084, + [SMALL_STATE(97)] = 10189, + [SMALL_STATE(98)] = 10294, + [SMALL_STATE(99)] = 10399, + [SMALL_STATE(100)] = 10504, + [SMALL_STATE(101)] = 10609, + [SMALL_STATE(102)] = 10714, + [SMALL_STATE(103)] = 10819, + [SMALL_STATE(104)] = 10924, + [SMALL_STATE(105)] = 11029, + [SMALL_STATE(106)] = 11134, + [SMALL_STATE(107)] = 11239, + [SMALL_STATE(108)] = 11344, + [SMALL_STATE(109)] = 11449, + [SMALL_STATE(110)] = 11554, + [SMALL_STATE(111)] = 11659, + [SMALL_STATE(112)] = 11764, + [SMALL_STATE(113)] = 11869, + [SMALL_STATE(114)] = 11974, + [SMALL_STATE(115)] = 12079, + [SMALL_STATE(116)] = 12184, + [SMALL_STATE(117)] = 12289, + [SMALL_STATE(118)] = 12394, + [SMALL_STATE(119)] = 12499, + [SMALL_STATE(120)] = 12604, + [SMALL_STATE(121)] = 12709, + [SMALL_STATE(122)] = 12814, + [SMALL_STATE(123)] = 12919, + [SMALL_STATE(124)] = 13024, + [SMALL_STATE(125)] = 13129, + [SMALL_STATE(126)] = 13234, + [SMALL_STATE(127)] = 13339, + [SMALL_STATE(128)] = 13444, + [SMALL_STATE(129)] = 13549, + [SMALL_STATE(130)] = 13654, + [SMALL_STATE(131)] = 13759, + [SMALL_STATE(132)] = 13864, + [SMALL_STATE(133)] = 13969, + [SMALL_STATE(134)] = 14074, + [SMALL_STATE(135)] = 14179, + [SMALL_STATE(136)] = 14284, + [SMALL_STATE(137)] = 14389, + [SMALL_STATE(138)] = 14494, + [SMALL_STATE(139)] = 14599, + [SMALL_STATE(140)] = 14704, + [SMALL_STATE(141)] = 14809, + [SMALL_STATE(142)] = 14914, + [SMALL_STATE(143)] = 15019, + [SMALL_STATE(144)] = 15124, + [SMALL_STATE(145)] = 15229, + [SMALL_STATE(146)] = 15334, + [SMALL_STATE(147)] = 15439, + [SMALL_STATE(148)] = 15544, + [SMALL_STATE(149)] = 15649, + [SMALL_STATE(150)] = 15754, + [SMALL_STATE(151)] = 15859, + [SMALL_STATE(152)] = 15964, + [SMALL_STATE(153)] = 16069, + [SMALL_STATE(154)] = 16174, + [SMALL_STATE(155)] = 16279, + [SMALL_STATE(156)] = 16384, + [SMALL_STATE(157)] = 16489, + [SMALL_STATE(158)] = 16594, + [SMALL_STATE(159)] = 16699, + [SMALL_STATE(160)] = 16804, + [SMALL_STATE(161)] = 16909, + [SMALL_STATE(162)] = 17014, + [SMALL_STATE(163)] = 17119, + [SMALL_STATE(164)] = 17224, + [SMALL_STATE(165)] = 17329, + [SMALL_STATE(166)] = 17434, + [SMALL_STATE(167)] = 17539, + [SMALL_STATE(168)] = 17644, + [SMALL_STATE(169)] = 17749, + [SMALL_STATE(170)] = 17854, + [SMALL_STATE(171)] = 17959, + [SMALL_STATE(172)] = 18064, + [SMALL_STATE(173)] = 18169, + [SMALL_STATE(174)] = 18274, + [SMALL_STATE(175)] = 18379, + [SMALL_STATE(176)] = 18484, + [SMALL_STATE(177)] = 18589, + [SMALL_STATE(178)] = 18694, + [SMALL_STATE(179)] = 18799, + [SMALL_STATE(180)] = 18904, + [SMALL_STATE(181)] = 19009, + [SMALL_STATE(182)] = 19114, + [SMALL_STATE(183)] = 19219, + [SMALL_STATE(184)] = 19324, + [SMALL_STATE(185)] = 19429, + [SMALL_STATE(186)] = 19534, + [SMALL_STATE(187)] = 19639, + [SMALL_STATE(188)] = 19744, + [SMALL_STATE(189)] = 19849, + [SMALL_STATE(190)] = 19954, + [SMALL_STATE(191)] = 20059, + [SMALL_STATE(192)] = 20164, + [SMALL_STATE(193)] = 20269, + [SMALL_STATE(194)] = 20374, + [SMALL_STATE(195)] = 20479, + [SMALL_STATE(196)] = 20584, + [SMALL_STATE(197)] = 20689, + [SMALL_STATE(198)] = 20794, + [SMALL_STATE(199)] = 20899, + [SMALL_STATE(200)] = 21004, + [SMALL_STATE(201)] = 21109, + [SMALL_STATE(202)] = 21214, + [SMALL_STATE(203)] = 21319, + [SMALL_STATE(204)] = 21424, + [SMALL_STATE(205)] = 21529, + [SMALL_STATE(206)] = 21634, + [SMALL_STATE(207)] = 21739, + [SMALL_STATE(208)] = 21844, + [SMALL_STATE(209)] = 21949, + [SMALL_STATE(210)] = 22054, + [SMALL_STATE(211)] = 22159, + [SMALL_STATE(212)] = 22264, + [SMALL_STATE(213)] = 22369, + [SMALL_STATE(214)] = 22474, + [SMALL_STATE(215)] = 22579, + [SMALL_STATE(216)] = 22684, + [SMALL_STATE(217)] = 22789, + [SMALL_STATE(218)] = 22894, + [SMALL_STATE(219)] = 22999, + [SMALL_STATE(220)] = 23104, + [SMALL_STATE(221)] = 23209, + [SMALL_STATE(222)] = 23314, + [SMALL_STATE(223)] = 23419, + [SMALL_STATE(224)] = 23524, + [SMALL_STATE(225)] = 23629, + [SMALL_STATE(226)] = 23734, + [SMALL_STATE(227)] = 23839, + [SMALL_STATE(228)] = 23944, + [SMALL_STATE(229)] = 24049, + [SMALL_STATE(230)] = 24154, + [SMALL_STATE(231)] = 24259, + [SMALL_STATE(232)] = 24364, + [SMALL_STATE(233)] = 24469, + [SMALL_STATE(234)] = 24574, + [SMALL_STATE(235)] = 24679, + [SMALL_STATE(236)] = 24784, + [SMALL_STATE(237)] = 24889, + [SMALL_STATE(238)] = 24994, + [SMALL_STATE(239)] = 25099, + [SMALL_STATE(240)] = 25204, + [SMALL_STATE(241)] = 25309, + [SMALL_STATE(242)] = 25414, + [SMALL_STATE(243)] = 25519, + [SMALL_STATE(244)] = 25624, + [SMALL_STATE(245)] = 25729, + [SMALL_STATE(246)] = 25834, + [SMALL_STATE(247)] = 25939, + [SMALL_STATE(248)] = 26044, + [SMALL_STATE(249)] = 26149, + [SMALL_STATE(250)] = 26254, + [SMALL_STATE(251)] = 26359, + [SMALL_STATE(252)] = 26464, + [SMALL_STATE(253)] = 26569, + [SMALL_STATE(254)] = 26674, + [SMALL_STATE(255)] = 26779, + [SMALL_STATE(256)] = 26884, + [SMALL_STATE(257)] = 26989, + [SMALL_STATE(258)] = 27094, + [SMALL_STATE(259)] = 27199, + [SMALL_STATE(260)] = 27304, + [SMALL_STATE(261)] = 27409, + [SMALL_STATE(262)] = 27514, + [SMALL_STATE(263)] = 27619, + [SMALL_STATE(264)] = 27724, + [SMALL_STATE(265)] = 27829, + [SMALL_STATE(266)] = 27884, + [SMALL_STATE(267)] = 27939, + [SMALL_STATE(268)] = 27995, + [SMALL_STATE(269)] = 28051, + [SMALL_STATE(270)] = 28102, + [SMALL_STATE(271)] = 28155, + [SMALL_STATE(272)] = 28195, + [SMALL_STATE(273)] = 28248, + [SMALL_STATE(274)] = 28301, + [SMALL_STATE(275)] = 28354, + [SMALL_STATE(276)] = 28407, + [SMALL_STATE(277)] = 28446, + [SMALL_STATE(278)] = 28485, + [SMALL_STATE(279)] = 28535, + [SMALL_STATE(280)] = 28583, + [SMALL_STATE(281)] = 28631, + [SMALL_STATE(282)] = 28681, + [SMALL_STATE(283)] = 28723, + [SMALL_STATE(284)] = 28765, + [SMALL_STATE(285)] = 28803, + [SMALL_STATE(286)] = 28841, + [SMALL_STATE(287)] = 28892, + [SMALL_STATE(288)] = 28943, + [SMALL_STATE(289)] = 28994, + [SMALL_STATE(290)] = 29031, + [SMALL_STATE(291)] = 29068, + [SMALL_STATE(292)] = 29105, + [SMALL_STATE(293)] = 29156, + [SMALL_STATE(294)] = 29207, + [SMALL_STATE(295)] = 29258, + [SMALL_STATE(296)] = 29295, + [SMALL_STATE(297)] = 29332, + [SMALL_STATE(298)] = 29369, + [SMALL_STATE(299)] = 29406, + [SMALL_STATE(300)] = 29443, + [SMALL_STATE(301)] = 29480, + [SMALL_STATE(302)] = 29517, + [SMALL_STATE(303)] = 29554, + [SMALL_STATE(304)] = 29591, + [SMALL_STATE(305)] = 29628, + [SMALL_STATE(306)] = 29665, + [SMALL_STATE(307)] = 29702, + [SMALL_STATE(308)] = 29739, + [SMALL_STATE(309)] = 29776, + [SMALL_STATE(310)] = 29813, + [SMALL_STATE(311)] = 29850, + [SMALL_STATE(312)] = 29887, + [SMALL_STATE(313)] = 29924, + [SMALL_STATE(314)] = 29961, + [SMALL_STATE(315)] = 29998, + [SMALL_STATE(316)] = 30035, + [SMALL_STATE(317)] = 30072, + [SMALL_STATE(318)] = 30109, + [SMALL_STATE(319)] = 30146, + [SMALL_STATE(320)] = 30183, + [SMALL_STATE(321)] = 30220, + [SMALL_STATE(322)] = 30259, + [SMALL_STATE(323)] = 30296, + [SMALL_STATE(324)] = 30333, + [SMALL_STATE(325)] = 30370, + [SMALL_STATE(326)] = 30407, + [SMALL_STATE(327)] = 30444, + [SMALL_STATE(328)] = 30481, + [SMALL_STATE(329)] = 30518, + [SMALL_STATE(330)] = 30569, + [SMALL_STATE(331)] = 30606, + [SMALL_STATE(332)] = 30643, + [SMALL_STATE(333)] = 30680, + [SMALL_STATE(334)] = 30717, + [SMALL_STATE(335)] = 30754, + [SMALL_STATE(336)] = 30791, + [SMALL_STATE(337)] = 30828, + [SMALL_STATE(338)] = 30865, + [SMALL_STATE(339)] = 30902, + [SMALL_STATE(340)] = 30939, + [SMALL_STATE(341)] = 30976, + [SMALL_STATE(342)] = 31013, + [SMALL_STATE(343)] = 31050, + [SMALL_STATE(344)] = 31087, + [SMALL_STATE(345)] = 31124, + [SMALL_STATE(346)] = 31161, + [SMALL_STATE(347)] = 31200, + [SMALL_STATE(348)] = 31237, + [SMALL_STATE(349)] = 31276, + [SMALL_STATE(350)] = 31313, + [SMALL_STATE(351)] = 31350, + [SMALL_STATE(352)] = 31387, + [SMALL_STATE(353)] = 31424, + [SMALL_STATE(354)] = 31461, + [SMALL_STATE(355)] = 31498, + [SMALL_STATE(356)] = 31535, + [SMALL_STATE(357)] = 31572, + [SMALL_STATE(358)] = 31609, + [SMALL_STATE(359)] = 31646, + [SMALL_STATE(360)] = 31683, + [SMALL_STATE(361)] = 31720, + [SMALL_STATE(362)] = 31757, + [SMALL_STATE(363)] = 31794, + [SMALL_STATE(364)] = 31833, + [SMALL_STATE(365)] = 31870, + [SMALL_STATE(366)] = 31907, + [SMALL_STATE(367)] = 31944, + [SMALL_STATE(368)] = 31981, + [SMALL_STATE(369)] = 32018, + [SMALL_STATE(370)] = 32055, + [SMALL_STATE(371)] = 32092, + [SMALL_STATE(372)] = 32129, + [SMALL_STATE(373)] = 32166, + [SMALL_STATE(374)] = 32203, + [SMALL_STATE(375)] = 32240, + [SMALL_STATE(376)] = 32277, + [SMALL_STATE(377)] = 32314, + [SMALL_STATE(378)] = 32351, + [SMALL_STATE(379)] = 32388, + [SMALL_STATE(380)] = 32439, + [SMALL_STATE(381)] = 32476, + [SMALL_STATE(382)] = 32513, + [SMALL_STATE(383)] = 32564, + [SMALL_STATE(384)] = 32601, + [SMALL_STATE(385)] = 32652, + [SMALL_STATE(386)] = 32689, + [SMALL_STATE(387)] = 32726, + [SMALL_STATE(388)] = 32777, + [SMALL_STATE(389)] = 32828, + [SMALL_STATE(390)] = 32879, + [SMALL_STATE(391)] = 32916, + [SMALL_STATE(392)] = 32967, + [SMALL_STATE(393)] = 33004, + [SMALL_STATE(394)] = 33055, + [SMALL_STATE(395)] = 33092, + [SMALL_STATE(396)] = 33143, + [SMALL_STATE(397)] = 33194, + [SMALL_STATE(398)] = 33231, + [SMALL_STATE(399)] = 33282, + [SMALL_STATE(400)] = 33333, + [SMALL_STATE(401)] = 33370, + [SMALL_STATE(402)] = 33421, + [SMALL_STATE(403)] = 33458, + [SMALL_STATE(404)] = 33504, + [SMALL_STATE(405)] = 33550, + [SMALL_STATE(406)] = 33586, + [SMALL_STATE(407)] = 33622, + [SMALL_STATE(408)] = 33670, + [SMALL_STATE(409)] = 33718, + [SMALL_STATE(410)] = 33764, + [SMALL_STATE(411)] = 33810, + [SMALL_STATE(412)] = 33858, + [SMALL_STATE(413)] = 33906, + [SMALL_STATE(414)] = 33952, + [SMALL_STATE(415)] = 34000, + [SMALL_STATE(416)] = 34048, + [SMALL_STATE(417)] = 34096, + [SMALL_STATE(418)] = 34142, + [SMALL_STATE(419)] = 34178, + [SMALL_STATE(420)] = 34226, + [SMALL_STATE(421)] = 34262, + [SMALL_STATE(422)] = 34310, + [SMALL_STATE(423)] = 34356, + [SMALL_STATE(424)] = 34402, + [SMALL_STATE(425)] = 34450, + [SMALL_STATE(426)] = 34496, + [SMALL_STATE(427)] = 34542, + [SMALL_STATE(428)] = 34589, + [SMALL_STATE(429)] = 34640, + [SMALL_STATE(430)] = 34675, + [SMALL_STATE(431)] = 34710, + [SMALL_STATE(432)] = 34745, + [SMALL_STATE(433)] = 34780, + [SMALL_STATE(434)] = 34821, + [SMALL_STATE(435)] = 34860, + [SMALL_STATE(436)] = 34895, + [SMALL_STATE(437)] = 34940, + [SMALL_STATE(438)] = 34975, + [SMALL_STATE(439)] = 35024, + [SMALL_STATE(440)] = 35059, + [SMALL_STATE(441)] = 35093, + [SMALL_STATE(442)] = 35127, + [SMALL_STATE(443)] = 35161, + [SMALL_STATE(444)] = 35197, + [SMALL_STATE(445)] = 35231, + [SMALL_STATE(446)] = 35265, + [SMALL_STATE(447)] = 35299, + [SMALL_STATE(448)] = 35333, + [SMALL_STATE(449)] = 35367, + [SMALL_STATE(450)] = 35403, + [SMALL_STATE(451)] = 35437, + [SMALL_STATE(452)] = 35471, + [SMALL_STATE(453)] = 35505, + [SMALL_STATE(454)] = 35539, + [SMALL_STATE(455)] = 35573, + [SMALL_STATE(456)] = 35607, + [SMALL_STATE(457)] = 35641, + [SMALL_STATE(458)] = 35675, + [SMALL_STATE(459)] = 35711, + [SMALL_STATE(460)] = 35745, + [SMALL_STATE(461)] = 35779, + [SMALL_STATE(462)] = 35813, + [SMALL_STATE(463)] = 35847, + [SMALL_STATE(464)] = 35881, + [SMALL_STATE(465)] = 35917, + [SMALL_STATE(466)] = 35951, + [SMALL_STATE(467)] = 35985, + [SMALL_STATE(468)] = 36019, + [SMALL_STATE(469)] = 36053, + [SMALL_STATE(470)] = 36087, + [SMALL_STATE(471)] = 36121, + [SMALL_STATE(472)] = 36155, + [SMALL_STATE(473)] = 36189, + [SMALL_STATE(474)] = 36223, + [SMALL_STATE(475)] = 36257, + [SMALL_STATE(476)] = 36291, + [SMALL_STATE(477)] = 36325, + [SMALL_STATE(478)] = 36359, + [SMALL_STATE(479)] = 36393, + [SMALL_STATE(480)] = 36427, + [SMALL_STATE(481)] = 36461, + [SMALL_STATE(482)] = 36495, + [SMALL_STATE(483)] = 36529, + [SMALL_STATE(484)] = 36563, + [SMALL_STATE(485)] = 36597, + [SMALL_STATE(486)] = 36631, + [SMALL_STATE(487)] = 36665, + [SMALL_STATE(488)] = 36699, + [SMALL_STATE(489)] = 36733, + [SMALL_STATE(490)] = 36767, + [SMALL_STATE(491)] = 36801, + [SMALL_STATE(492)] = 36835, + [SMALL_STATE(493)] = 36869, + [SMALL_STATE(494)] = 36903, + [SMALL_STATE(495)] = 36937, + [SMALL_STATE(496)] = 36971, + [SMALL_STATE(497)] = 37005, + [SMALL_STATE(498)] = 37039, + [SMALL_STATE(499)] = 37073, + [SMALL_STATE(500)] = 37107, + [SMALL_STATE(501)] = 37141, + [SMALL_STATE(502)] = 37175, + [SMALL_STATE(503)] = 37209, + [SMALL_STATE(504)] = 37243, + [SMALL_STATE(505)] = 37277, + [SMALL_STATE(506)] = 37311, + [SMALL_STATE(507)] = 37345, + [SMALL_STATE(508)] = 37379, + [SMALL_STATE(509)] = 37413, + [SMALL_STATE(510)] = 37447, + [SMALL_STATE(511)] = 37481, + [SMALL_STATE(512)] = 37515, + [SMALL_STATE(513)] = 37549, + [SMALL_STATE(514)] = 37583, + [SMALL_STATE(515)] = 37617, + [SMALL_STATE(516)] = 37651, + [SMALL_STATE(517)] = 37685, + [SMALL_STATE(518)] = 37719, + [SMALL_STATE(519)] = 37753, + [SMALL_STATE(520)] = 37789, + [SMALL_STATE(521)] = 37823, + [SMALL_STATE(522)] = 37857, + [SMALL_STATE(523)] = 37891, + [SMALL_STATE(524)] = 37925, + [SMALL_STATE(525)] = 37959, + [SMALL_STATE(526)] = 37993, + [SMALL_STATE(527)] = 38027, + [SMALL_STATE(528)] = 38061, + [SMALL_STATE(529)] = 38095, + [SMALL_STATE(530)] = 38129, + [SMALL_STATE(531)] = 38163, + [SMALL_STATE(532)] = 38197, + [SMALL_STATE(533)] = 38233, + [SMALL_STATE(534)] = 38267, + [SMALL_STATE(535)] = 38301, + [SMALL_STATE(536)] = 38335, + [SMALL_STATE(537)] = 38369, + [SMALL_STATE(538)] = 38403, + [SMALL_STATE(539)] = 38437, + [SMALL_STATE(540)] = 38471, + [SMALL_STATE(541)] = 38505, + [SMALL_STATE(542)] = 38539, + [SMALL_STATE(543)] = 38573, + [SMALL_STATE(544)] = 38607, + [SMALL_STATE(545)] = 38641, + [SMALL_STATE(546)] = 38675, + [SMALL_STATE(547)] = 38709, + [SMALL_STATE(548)] = 38743, + [SMALL_STATE(549)] = 38775, + [SMALL_STATE(550)] = 38807, + [SMALL_STATE(551)] = 38839, + [SMALL_STATE(552)] = 38871, + [SMALL_STATE(553)] = 38903, + [SMALL_STATE(554)] = 38935, + [SMALL_STATE(555)] = 38967, + [SMALL_STATE(556)] = 38999, + [SMALL_STATE(557)] = 39031, + [SMALL_STATE(558)] = 39063, + [SMALL_STATE(559)] = 39095, + [SMALL_STATE(560)] = 39127, + [SMALL_STATE(561)] = 39159, + [SMALL_STATE(562)] = 39191, + [SMALL_STATE(563)] = 39223, + [SMALL_STATE(564)] = 39257, + [SMALL_STATE(565)] = 39289, + [SMALL_STATE(566)] = 39321, + [SMALL_STATE(567)] = 39353, + [SMALL_STATE(568)] = 39385, + [SMALL_STATE(569)] = 39417, + [SMALL_STATE(570)] = 39449, + [SMALL_STATE(571)] = 39481, + [SMALL_STATE(572)] = 39513, + [SMALL_STATE(573)] = 39545, + [SMALL_STATE(574)] = 39577, + [SMALL_STATE(575)] = 39609, + [SMALL_STATE(576)] = 39641, + [SMALL_STATE(577)] = 39675, + [SMALL_STATE(578)] = 39707, + [SMALL_STATE(579)] = 39739, + [SMALL_STATE(580)] = 39771, + [SMALL_STATE(581)] = 39803, + [SMALL_STATE(582)] = 39835, + [SMALL_STATE(583)] = 39869, + [SMALL_STATE(584)] = 39901, + [SMALL_STATE(585)] = 39933, + [SMALL_STATE(586)] = 39965, + [SMALL_STATE(587)] = 39997, + [SMALL_STATE(588)] = 40029, + [SMALL_STATE(589)] = 40061, + [SMALL_STATE(590)] = 40093, + [SMALL_STATE(591)] = 40125, + [SMALL_STATE(592)] = 40157, + [SMALL_STATE(593)] = 40189, + [SMALL_STATE(594)] = 40221, + [SMALL_STATE(595)] = 40253, + [SMALL_STATE(596)] = 40285, + [SMALL_STATE(597)] = 40317, + [SMALL_STATE(598)] = 40349, + [SMALL_STATE(599)] = 40381, + [SMALL_STATE(600)] = 40413, + [SMALL_STATE(601)] = 40445, + [SMALL_STATE(602)] = 40477, + [SMALL_STATE(603)] = 40509, + [SMALL_STATE(604)] = 40541, + [SMALL_STATE(605)] = 40573, + [SMALL_STATE(606)] = 40605, + [SMALL_STATE(607)] = 40639, + [SMALL_STATE(608)] = 40671, + [SMALL_STATE(609)] = 40703, + [SMALL_STATE(610)] = 40737, + [SMALL_STATE(611)] = 40769, + [SMALL_STATE(612)] = 40801, + [SMALL_STATE(613)] = 40833, + [SMALL_STATE(614)] = 40865, + [SMALL_STATE(615)] = 40897, + [SMALL_STATE(616)] = 40929, + [SMALL_STATE(617)] = 40961, + [SMALL_STATE(618)] = 40993, + [SMALL_STATE(619)] = 41025, + [SMALL_STATE(620)] = 41059, + [SMALL_STATE(621)] = 41091, + [SMALL_STATE(622)] = 41123, + [SMALL_STATE(623)] = 41155, + [SMALL_STATE(624)] = 41187, + [SMALL_STATE(625)] = 41219, + [SMALL_STATE(626)] = 41253, + [SMALL_STATE(627)] = 41285, + [SMALL_STATE(628)] = 41317, + [SMALL_STATE(629)] = 41349, + [SMALL_STATE(630)] = 41381, + [SMALL_STATE(631)] = 41413, + [SMALL_STATE(632)] = 41445, + [SMALL_STATE(633)] = 41477, + [SMALL_STATE(634)] = 41509, + [SMALL_STATE(635)] = 41541, + [SMALL_STATE(636)] = 41573, + [SMALL_STATE(637)] = 41605, + [SMALL_STATE(638)] = 41637, + [SMALL_STATE(639)] = 41669, + [SMALL_STATE(640)] = 41701, + [SMALL_STATE(641)] = 41733, + [SMALL_STATE(642)] = 41765, + [SMALL_STATE(643)] = 41797, + [SMALL_STATE(644)] = 41829, + [SMALL_STATE(645)] = 41861, + [SMALL_STATE(646)] = 41893, + [SMALL_STATE(647)] = 41925, + [SMALL_STATE(648)] = 41957, + [SMALL_STATE(649)] = 41989, + [SMALL_STATE(650)] = 42023, + [SMALL_STATE(651)] = 42055, + [SMALL_STATE(652)] = 42087, + [SMALL_STATE(653)] = 42119, + [SMALL_STATE(654)] = 42151, + [SMALL_STATE(655)] = 42183, + [SMALL_STATE(656)] = 42215, + [SMALL_STATE(657)] = 42247, + [SMALL_STATE(658)] = 42279, + [SMALL_STATE(659)] = 42311, + [SMALL_STATE(660)] = 42345, + [SMALL_STATE(661)] = 42377, + [SMALL_STATE(662)] = 42409, + [SMALL_STATE(663)] = 42441, + [SMALL_STATE(664)] = 42473, + [SMALL_STATE(665)] = 42505, + [SMALL_STATE(666)] = 42537, + [SMALL_STATE(667)] = 42569, + [SMALL_STATE(668)] = 42601, + [SMALL_STATE(669)] = 42633, + [SMALL_STATE(670)] = 42667, + [SMALL_STATE(671)] = 42699, + [SMALL_STATE(672)] = 42731, + [SMALL_STATE(673)] = 42763, + [SMALL_STATE(674)] = 42795, + [SMALL_STATE(675)] = 42827, + [SMALL_STATE(676)] = 42861, + [SMALL_STATE(677)] = 42893, + [SMALL_STATE(678)] = 42925, + [SMALL_STATE(679)] = 42957, + [SMALL_STATE(680)] = 42989, + [SMALL_STATE(681)] = 43021, + [SMALL_STATE(682)] = 43053, + [SMALL_STATE(683)] = 43085, + [SMALL_STATE(684)] = 43117, + [SMALL_STATE(685)] = 43149, + [SMALL_STATE(686)] = 43181, + [SMALL_STATE(687)] = 43213, + [SMALL_STATE(688)] = 43245, + [SMALL_STATE(689)] = 43277, + [SMALL_STATE(690)] = 43309, + [SMALL_STATE(691)] = 43341, + [SMALL_STATE(692)] = 43373, + [SMALL_STATE(693)] = 43405, + [SMALL_STATE(694)] = 43439, + [SMALL_STATE(695)] = 43471, + [SMALL_STATE(696)] = 43503, + [SMALL_STATE(697)] = 43535, + [SMALL_STATE(698)] = 43567, + [SMALL_STATE(699)] = 43599, + [SMALL_STATE(700)] = 43631, + [SMALL_STATE(701)] = 43663, + [SMALL_STATE(702)] = 43695, + [SMALL_STATE(703)] = 43727, + [SMALL_STATE(704)] = 43759, + [SMALL_STATE(705)] = 43791, + [SMALL_STATE(706)] = 43823, + [SMALL_STATE(707)] = 43855, + [SMALL_STATE(708)] = 43887, + [SMALL_STATE(709)] = 43919, + [SMALL_STATE(710)] = 43951, + [SMALL_STATE(711)] = 43985, + [SMALL_STATE(712)] = 44017, + [SMALL_STATE(713)] = 44049, + [SMALL_STATE(714)] = 44081, + [SMALL_STATE(715)] = 44113, + [SMALL_STATE(716)] = 44145, + [SMALL_STATE(717)] = 44177, + [SMALL_STATE(718)] = 44209, + [SMALL_STATE(719)] = 44241, + [SMALL_STATE(720)] = 44273, + [SMALL_STATE(721)] = 44307, + [SMALL_STATE(722)] = 44339, + [SMALL_STATE(723)] = 44371, + [SMALL_STATE(724)] = 44403, + [SMALL_STATE(725)] = 44435, + [SMALL_STATE(726)] = 44467, + [SMALL_STATE(727)] = 44501, + [SMALL_STATE(728)] = 44533, + [SMALL_STATE(729)] = 44565, + [SMALL_STATE(730)] = 44597, + [SMALL_STATE(731)] = 44629, + [SMALL_STATE(732)] = 44661, + [SMALL_STATE(733)] = 44693, + [SMALL_STATE(734)] = 44725, + [SMALL_STATE(735)] = 44757, + [SMALL_STATE(736)] = 44789, + [SMALL_STATE(737)] = 44821, + [SMALL_STATE(738)] = 44853, + [SMALL_STATE(739)] = 44885, + [SMALL_STATE(740)] = 44917, + [SMALL_STATE(741)] = 44949, + [SMALL_STATE(742)] = 44981, + [SMALL_STATE(743)] = 45013, + [SMALL_STATE(744)] = 45045, + [SMALL_STATE(745)] = 45077, + [SMALL_STATE(746)] = 45109, + [SMALL_STATE(747)] = 45141, + [SMALL_STATE(748)] = 45173, + [SMALL_STATE(749)] = 45205, + [SMALL_STATE(750)] = 45237, + [SMALL_STATE(751)] = 45269, + [SMALL_STATE(752)] = 45301, + [SMALL_STATE(753)] = 45333, + [SMALL_STATE(754)] = 45365, + [SMALL_STATE(755)] = 45397, + [SMALL_STATE(756)] = 45429, + [SMALL_STATE(757)] = 45461, + [SMALL_STATE(758)] = 45493, + [SMALL_STATE(759)] = 45525, + [SMALL_STATE(760)] = 45557, + [SMALL_STATE(761)] = 45589, + [SMALL_STATE(762)] = 45621, + [SMALL_STATE(763)] = 45653, + [SMALL_STATE(764)] = 45685, + [SMALL_STATE(765)] = 45717, + [SMALL_STATE(766)] = 45749, + [SMALL_STATE(767)] = 45781, + [SMALL_STATE(768)] = 45813, + [SMALL_STATE(769)] = 45845, + [SMALL_STATE(770)] = 45877, + [SMALL_STATE(771)] = 45911, + [SMALL_STATE(772)] = 45943, + [SMALL_STATE(773)] = 45975, + [SMALL_STATE(774)] = 46007, + [SMALL_STATE(775)] = 46039, + [SMALL_STATE(776)] = 46071, + [SMALL_STATE(777)] = 46103, + [SMALL_STATE(778)] = 46135, + [SMALL_STATE(779)] = 46167, + [SMALL_STATE(780)] = 46199, + [SMALL_STATE(781)] = 46231, + [SMALL_STATE(782)] = 46263, + [SMALL_STATE(783)] = 46295, + [SMALL_STATE(784)] = 46327, + [SMALL_STATE(785)] = 46359, + [SMALL_STATE(786)] = 46393, + [SMALL_STATE(787)] = 46425, + [SMALL_STATE(788)] = 46457, + [SMALL_STATE(789)] = 46489, + [SMALL_STATE(790)] = 46521, + [SMALL_STATE(791)] = 46553, + [SMALL_STATE(792)] = 46585, + [SMALL_STATE(793)] = 46619, + [SMALL_STATE(794)] = 46651, + [SMALL_STATE(795)] = 46683, + [SMALL_STATE(796)] = 46715, + [SMALL_STATE(797)] = 46747, + [SMALL_STATE(798)] = 46779, + [SMALL_STATE(799)] = 46811, + [SMALL_STATE(800)] = 46843, + [SMALL_STATE(801)] = 46875, + [SMALL_STATE(802)] = 46907, + [SMALL_STATE(803)] = 46939, + [SMALL_STATE(804)] = 46971, + [SMALL_STATE(805)] = 47005, + [SMALL_STATE(806)] = 47037, + [SMALL_STATE(807)] = 47069, + [SMALL_STATE(808)] = 47101, + [SMALL_STATE(809)] = 47133, + [SMALL_STATE(810)] = 47165, + [SMALL_STATE(811)] = 47197, + [SMALL_STATE(812)] = 47229, + [SMALL_STATE(813)] = 47261, + [SMALL_STATE(814)] = 47293, + [SMALL_STATE(815)] = 47327, + [SMALL_STATE(816)] = 47359, + [SMALL_STATE(817)] = 47391, + [SMALL_STATE(818)] = 47423, + [SMALL_STATE(819)] = 47455, + [SMALL_STATE(820)] = 47487, + [SMALL_STATE(821)] = 47521, + [SMALL_STATE(822)] = 47553, + [SMALL_STATE(823)] = 47585, + [SMALL_STATE(824)] = 47617, + [SMALL_STATE(825)] = 47649, + [SMALL_STATE(826)] = 47681, + [SMALL_STATE(827)] = 47713, + [SMALL_STATE(828)] = 47745, + [SMALL_STATE(829)] = 47777, + [SMALL_STATE(830)] = 47809, + [SMALL_STATE(831)] = 47841, + [SMALL_STATE(832)] = 47873, + [SMALL_STATE(833)] = 47905, + [SMALL_STATE(834)] = 47937, + [SMALL_STATE(835)] = 47969, + [SMALL_STATE(836)] = 48001, + [SMALL_STATE(837)] = 48033, + [SMALL_STATE(838)] = 48065, + [SMALL_STATE(839)] = 48097, + [SMALL_STATE(840)] = 48129, + [SMALL_STATE(841)] = 48161, + [SMALL_STATE(842)] = 48193, + [SMALL_STATE(843)] = 48225, + [SMALL_STATE(844)] = 48257, + [SMALL_STATE(845)] = 48289, + [SMALL_STATE(846)] = 48321, + [SMALL_STATE(847)] = 48353, + [SMALL_STATE(848)] = 48385, + [SMALL_STATE(849)] = 48417, + [SMALL_STATE(850)] = 48449, + [SMALL_STATE(851)] = 48481, + [SMALL_STATE(852)] = 48513, + [SMALL_STATE(853)] = 48545, + [SMALL_STATE(854)] = 48577, + [SMALL_STATE(855)] = 48609, + [SMALL_STATE(856)] = 48641, + [SMALL_STATE(857)] = 48673, + [SMALL_STATE(858)] = 48705, + [SMALL_STATE(859)] = 48737, + [SMALL_STATE(860)] = 48769, + [SMALL_STATE(861)] = 48801, + [SMALL_STATE(862)] = 48835, + [SMALL_STATE(863)] = 48867, + [SMALL_STATE(864)] = 48899, + [SMALL_STATE(865)] = 48931, + [SMALL_STATE(866)] = 48963, + [SMALL_STATE(867)] = 48995, + [SMALL_STATE(868)] = 49027, + [SMALL_STATE(869)] = 49059, + [SMALL_STATE(870)] = 49091, + [SMALL_STATE(871)] = 49123, + [SMALL_STATE(872)] = 49157, + [SMALL_STATE(873)] = 49189, + [SMALL_STATE(874)] = 49221, + [SMALL_STATE(875)] = 49253, + [SMALL_STATE(876)] = 49285, + [SMALL_STATE(877)] = 49317, + [SMALL_STATE(878)] = 49351, + [SMALL_STATE(879)] = 49383, + [SMALL_STATE(880)] = 49415, + [SMALL_STATE(881)] = 49447, + [SMALL_STATE(882)] = 49479, + [SMALL_STATE(883)] = 49511, + [SMALL_STATE(884)] = 49543, + [SMALL_STATE(885)] = 49575, + [SMALL_STATE(886)] = 49607, + [SMALL_STATE(887)] = 49639, + [SMALL_STATE(888)] = 49671, + [SMALL_STATE(889)] = 49703, + [SMALL_STATE(890)] = 49735, + [SMALL_STATE(891)] = 49767, + [SMALL_STATE(892)] = 49799, + [SMALL_STATE(893)] = 49831, + [SMALL_STATE(894)] = 49863, + [SMALL_STATE(895)] = 49895, + [SMALL_STATE(896)] = 49927, + [SMALL_STATE(897)] = 49959, + [SMALL_STATE(898)] = 49991, + [SMALL_STATE(899)] = 50023, + [SMALL_STATE(900)] = 50055, + [SMALL_STATE(901)] = 50087, + [SMALL_STATE(902)] = 50119, + [SMALL_STATE(903)] = 50151, + [SMALL_STATE(904)] = 50183, + [SMALL_STATE(905)] = 50215, + [SMALL_STATE(906)] = 50247, + [SMALL_STATE(907)] = 50279, + [SMALL_STATE(908)] = 50311, + [SMALL_STATE(909)] = 50343, + [SMALL_STATE(910)] = 50375, + [SMALL_STATE(911)] = 50407, + [SMALL_STATE(912)] = 50439, + [SMALL_STATE(913)] = 50473, + [SMALL_STATE(914)] = 50505, + [SMALL_STATE(915)] = 50537, + [SMALL_STATE(916)] = 50569, + [SMALL_STATE(917)] = 50601, + [SMALL_STATE(918)] = 50633, + [SMALL_STATE(919)] = 50665, + [SMALL_STATE(920)] = 50697, + [SMALL_STATE(921)] = 50729, + [SMALL_STATE(922)] = 50761, + [SMALL_STATE(923)] = 50795, + [SMALL_STATE(924)] = 50827, + [SMALL_STATE(925)] = 50859, + [SMALL_STATE(926)] = 50891, + [SMALL_STATE(927)] = 50923, + [SMALL_STATE(928)] = 50955, + [SMALL_STATE(929)] = 50989, + [SMALL_STATE(930)] = 51021, + [SMALL_STATE(931)] = 51053, + [SMALL_STATE(932)] = 51085, + [SMALL_STATE(933)] = 51117, + [SMALL_STATE(934)] = 51149, + [SMALL_STATE(935)] = 51181, + [SMALL_STATE(936)] = 51213, + [SMALL_STATE(937)] = 51245, + [SMALL_STATE(938)] = 51277, + [SMALL_STATE(939)] = 51309, + [SMALL_STATE(940)] = 51341, + [SMALL_STATE(941)] = 51373, + [SMALL_STATE(942)] = 51405, + [SMALL_STATE(943)] = 51437, + [SMALL_STATE(944)] = 51469, + [SMALL_STATE(945)] = 51501, + [SMALL_STATE(946)] = 51533, + [SMALL_STATE(947)] = 51565, + [SMALL_STATE(948)] = 51597, + [SMALL_STATE(949)] = 51629, + [SMALL_STATE(950)] = 51661, + [SMALL_STATE(951)] = 51693, + [SMALL_STATE(952)] = 51725, + [SMALL_STATE(953)] = 51757, + [SMALL_STATE(954)] = 51789, + [SMALL_STATE(955)] = 51821, + [SMALL_STATE(956)] = 51853, + [SMALL_STATE(957)] = 51885, + [SMALL_STATE(958)] = 51917, + [SMALL_STATE(959)] = 51949, + [SMALL_STATE(960)] = 51981, + [SMALL_STATE(961)] = 52013, + [SMALL_STATE(962)] = 52045, + [SMALL_STATE(963)] = 52079, + [SMALL_STATE(964)] = 52111, + [SMALL_STATE(965)] = 52143, + [SMALL_STATE(966)] = 52175, + [SMALL_STATE(967)] = 52207, + [SMALL_STATE(968)] = 52239, + [SMALL_STATE(969)] = 52271, + [SMALL_STATE(970)] = 52303, + [SMALL_STATE(971)] = 52335, + [SMALL_STATE(972)] = 52367, + [SMALL_STATE(973)] = 52401, + [SMALL_STATE(974)] = 52433, + [SMALL_STATE(975)] = 52465, + [SMALL_STATE(976)] = 52497, + [SMALL_STATE(977)] = 52529, + [SMALL_STATE(978)] = 52561, + [SMALL_STATE(979)] = 52595, + [SMALL_STATE(980)] = 52627, + [SMALL_STATE(981)] = 52659, + [SMALL_STATE(982)] = 52691, + [SMALL_STATE(983)] = 52723, + [SMALL_STATE(984)] = 52755, + [SMALL_STATE(985)] = 52787, + [SMALL_STATE(986)] = 52819, + [SMALL_STATE(987)] = 52851, + [SMALL_STATE(988)] = 52883, + [SMALL_STATE(989)] = 52940, + [SMALL_STATE(990)] = 52997, + [SMALL_STATE(991)] = 53054, + [SMALL_STATE(992)] = 53111, + [SMALL_STATE(993)] = 53168, + [SMALL_STATE(994)] = 53225, + [SMALL_STATE(995)] = 53282, + [SMALL_STATE(996)] = 53339, + [SMALL_STATE(997)] = 53396, + [SMALL_STATE(998)] = 53453, + [SMALL_STATE(999)] = 53510, + [SMALL_STATE(1000)] = 53567, + [SMALL_STATE(1001)] = 53624, + [SMALL_STATE(1002)] = 53681, + [SMALL_STATE(1003)] = 53738, + [SMALL_STATE(1004)] = 53795, + [SMALL_STATE(1005)] = 53852, + [SMALL_STATE(1006)] = 53909, + [SMALL_STATE(1007)] = 53966, + [SMALL_STATE(1008)] = 54023, + [SMALL_STATE(1009)] = 54080, + [SMALL_STATE(1010)] = 54137, + [SMALL_STATE(1011)] = 54194, + [SMALL_STATE(1012)] = 54251, + [SMALL_STATE(1013)] = 54308, + [SMALL_STATE(1014)] = 54365, + [SMALL_STATE(1015)] = 54422, + [SMALL_STATE(1016)] = 54479, + [SMALL_STATE(1017)] = 54536, + [SMALL_STATE(1018)] = 54593, + [SMALL_STATE(1019)] = 54650, + [SMALL_STATE(1020)] = 54707, + [SMALL_STATE(1021)] = 54764, + [SMALL_STATE(1022)] = 54821, + [SMALL_STATE(1023)] = 54878, + [SMALL_STATE(1024)] = 54935, + [SMALL_STATE(1025)] = 54992, + [SMALL_STATE(1026)] = 55049, + [SMALL_STATE(1027)] = 55106, + [SMALL_STATE(1028)] = 55163, + [SMALL_STATE(1029)] = 55220, + [SMALL_STATE(1030)] = 55277, + [SMALL_STATE(1031)] = 55334, + [SMALL_STATE(1032)] = 55391, + [SMALL_STATE(1033)] = 55448, + [SMALL_STATE(1034)] = 55505, + [SMALL_STATE(1035)] = 55562, + [SMALL_STATE(1036)] = 55619, + [SMALL_STATE(1037)] = 55676, + [SMALL_STATE(1038)] = 55733, + [SMALL_STATE(1039)] = 55790, + [SMALL_STATE(1040)] = 55847, + [SMALL_STATE(1041)] = 55904, + [SMALL_STATE(1042)] = 55961, + [SMALL_STATE(1043)] = 56018, + [SMALL_STATE(1044)] = 56075, + [SMALL_STATE(1045)] = 56132, + [SMALL_STATE(1046)] = 56189, + [SMALL_STATE(1047)] = 56246, + [SMALL_STATE(1048)] = 56303, + [SMALL_STATE(1049)] = 56360, + [SMALL_STATE(1050)] = 56417, + [SMALL_STATE(1051)] = 56474, + [SMALL_STATE(1052)] = 56531, + [SMALL_STATE(1053)] = 56588, + [SMALL_STATE(1054)] = 56645, + [SMALL_STATE(1055)] = 56702, + [SMALL_STATE(1056)] = 56759, + [SMALL_STATE(1057)] = 56816, + [SMALL_STATE(1058)] = 56873, + [SMALL_STATE(1059)] = 56930, + [SMALL_STATE(1060)] = 56987, + [SMALL_STATE(1061)] = 57044, + [SMALL_STATE(1062)] = 57101, + [SMALL_STATE(1063)] = 57158, + [SMALL_STATE(1064)] = 57215, + [SMALL_STATE(1065)] = 57272, + [SMALL_STATE(1066)] = 57329, + [SMALL_STATE(1067)] = 57386, + [SMALL_STATE(1068)] = 57443, + [SMALL_STATE(1069)] = 57500, + [SMALL_STATE(1070)] = 57557, + [SMALL_STATE(1071)] = 57614, + [SMALL_STATE(1072)] = 57671, + [SMALL_STATE(1073)] = 57728, + [SMALL_STATE(1074)] = 57785, + [SMALL_STATE(1075)] = 57842, + [SMALL_STATE(1076)] = 57899, + [SMALL_STATE(1077)] = 57956, + [SMALL_STATE(1078)] = 58013, + [SMALL_STATE(1079)] = 58070, + [SMALL_STATE(1080)] = 58127, + [SMALL_STATE(1081)] = 58184, + [SMALL_STATE(1082)] = 58241, + [SMALL_STATE(1083)] = 58298, + [SMALL_STATE(1084)] = 58355, + [SMALL_STATE(1085)] = 58412, + [SMALL_STATE(1086)] = 58469, + [SMALL_STATE(1087)] = 58526, + [SMALL_STATE(1088)] = 58583, + [SMALL_STATE(1089)] = 58640, + [SMALL_STATE(1090)] = 58697, + [SMALL_STATE(1091)] = 58754, + [SMALL_STATE(1092)] = 58811, + [SMALL_STATE(1093)] = 58868, + [SMALL_STATE(1094)] = 58925, + [SMALL_STATE(1095)] = 58982, + [SMALL_STATE(1096)] = 59039, + [SMALL_STATE(1097)] = 59096, + [SMALL_STATE(1098)] = 59153, + [SMALL_STATE(1099)] = 59210, + [SMALL_STATE(1100)] = 59267, + [SMALL_STATE(1101)] = 59324, + [SMALL_STATE(1102)] = 59381, + [SMALL_STATE(1103)] = 59438, + [SMALL_STATE(1104)] = 59495, + [SMALL_STATE(1105)] = 59552, + [SMALL_STATE(1106)] = 59609, + [SMALL_STATE(1107)] = 59666, + [SMALL_STATE(1108)] = 59723, + [SMALL_STATE(1109)] = 59780, + [SMALL_STATE(1110)] = 59837, + [SMALL_STATE(1111)] = 59894, + [SMALL_STATE(1112)] = 59951, + [SMALL_STATE(1113)] = 60008, + [SMALL_STATE(1114)] = 60065, + [SMALL_STATE(1115)] = 60122, + [SMALL_STATE(1116)] = 60179, + [SMALL_STATE(1117)] = 60236, + [SMALL_STATE(1118)] = 60293, + [SMALL_STATE(1119)] = 60350, + [SMALL_STATE(1120)] = 60407, + [SMALL_STATE(1121)] = 60464, + [SMALL_STATE(1122)] = 60521, + [SMALL_STATE(1123)] = 60578, + [SMALL_STATE(1124)] = 60632, + [SMALL_STATE(1125)] = 60683, + [SMALL_STATE(1126)] = 60731, + [SMALL_STATE(1127)] = 60779, + [SMALL_STATE(1128)] = 60824, + [SMALL_STATE(1129)] = 60871, + [SMALL_STATE(1130)] = 60915, + [SMALL_STATE(1131)] = 60957, + [SMALL_STATE(1132)] = 60997, + [SMALL_STATE(1133)] = 61039, + [SMALL_STATE(1134)] = 61081, + [SMALL_STATE(1135)] = 61123, + [SMALL_STATE(1136)] = 61165, + [SMALL_STATE(1137)] = 61209, + [SMALL_STATE(1138)] = 61253, + [SMALL_STATE(1139)] = 61297, + [SMALL_STATE(1140)] = 61341, + [SMALL_STATE(1141)] = 61385, + [SMALL_STATE(1142)] = 61429, + [SMALL_STATE(1143)] = 61473, + [SMALL_STATE(1144)] = 61517, + [SMALL_STATE(1145)] = 61561, + [SMALL_STATE(1146)] = 61605, + [SMALL_STATE(1147)] = 61649, + [SMALL_STATE(1148)] = 61693, + [SMALL_STATE(1149)] = 61734, + [SMALL_STATE(1150)] = 61775, + [SMALL_STATE(1151)] = 61816, + [SMALL_STATE(1152)] = 61857, + [SMALL_STATE(1153)] = 61898, + [SMALL_STATE(1154)] = 61939, + [SMALL_STATE(1155)] = 61980, + [SMALL_STATE(1156)] = 62019, + [SMALL_STATE(1157)] = 62060, + [SMALL_STATE(1158)] = 62101, + [SMALL_STATE(1159)] = 62142, + [SMALL_STATE(1160)] = 62183, + [SMALL_STATE(1161)] = 62224, + [SMALL_STATE(1162)] = 62263, + [SMALL_STATE(1163)] = 62304, + [SMALL_STATE(1164)] = 62345, + [SMALL_STATE(1165)] = 62386, + [SMALL_STATE(1166)] = 62427, + [SMALL_STATE(1167)] = 62468, + [SMALL_STATE(1168)] = 62509, + [SMALL_STATE(1169)] = 62550, + [SMALL_STATE(1170)] = 62591, + [SMALL_STATE(1171)] = 62632, + [SMALL_STATE(1172)] = 62673, + [SMALL_STATE(1173)] = 62714, + [SMALL_STATE(1174)] = 62755, + [SMALL_STATE(1175)] = 62796, + [SMALL_STATE(1176)] = 62837, + [SMALL_STATE(1177)] = 62878, + [SMALL_STATE(1178)] = 62919, + [SMALL_STATE(1179)] = 62960, + [SMALL_STATE(1180)] = 63001, + [SMALL_STATE(1181)] = 63042, + [SMALL_STATE(1182)] = 63083, + [SMALL_STATE(1183)] = 63124, + [SMALL_STATE(1184)] = 63165, + [SMALL_STATE(1185)] = 63206, + [SMALL_STATE(1186)] = 63247, + [SMALL_STATE(1187)] = 63288, + [SMALL_STATE(1188)] = 63329, + [SMALL_STATE(1189)] = 63370, + [SMALL_STATE(1190)] = 63411, + [SMALL_STATE(1191)] = 63452, + [SMALL_STATE(1192)] = 63493, + [SMALL_STATE(1193)] = 63532, + [SMALL_STATE(1194)] = 63573, + [SMALL_STATE(1195)] = 63614, + [SMALL_STATE(1196)] = 63655, + [SMALL_STATE(1197)] = 63694, + [SMALL_STATE(1198)] = 63735, + [SMALL_STATE(1199)] = 63776, + [SMALL_STATE(1200)] = 63817, + [SMALL_STATE(1201)] = 63858, + [SMALL_STATE(1202)] = 63899, + [SMALL_STATE(1203)] = 63940, + [SMALL_STATE(1204)] = 63981, + [SMALL_STATE(1205)] = 64022, + [SMALL_STATE(1206)] = 64063, + [SMALL_STATE(1207)] = 64104, + [SMALL_STATE(1208)] = 64145, + [SMALL_STATE(1209)] = 64184, + [SMALL_STATE(1210)] = 64225, + [SMALL_STATE(1211)] = 64266, + [SMALL_STATE(1212)] = 64307, + [SMALL_STATE(1213)] = 64346, + [SMALL_STATE(1214)] = 64387, + [SMALL_STATE(1215)] = 64426, + [SMALL_STATE(1216)] = 64463, + [SMALL_STATE(1217)] = 64504, + [SMALL_STATE(1218)] = 64545, + [SMALL_STATE(1219)] = 64586, + [SMALL_STATE(1220)] = 64627, + [SMALL_STATE(1221)] = 64668, + [SMALL_STATE(1222)] = 64709, + [SMALL_STATE(1223)] = 64750, + [SMALL_STATE(1224)] = 64789, + [SMALL_STATE(1225)] = 64826, + [SMALL_STATE(1226)] = 64867, + [SMALL_STATE(1227)] = 64908, + [SMALL_STATE(1228)] = 64949, + [SMALL_STATE(1229)] = 64990, + [SMALL_STATE(1230)] = 65031, + [SMALL_STATE(1231)] = 65072, + [SMALL_STATE(1232)] = 65113, + [SMALL_STATE(1233)] = 65154, + [SMALL_STATE(1234)] = 65195, + [SMALL_STATE(1235)] = 65234, + [SMALL_STATE(1236)] = 65275, + [SMALL_STATE(1237)] = 65316, + [SMALL_STATE(1238)] = 65357, + [SMALL_STATE(1239)] = 65398, + [SMALL_STATE(1240)] = 65437, + [SMALL_STATE(1241)] = 65478, + [SMALL_STATE(1242)] = 65519, + [SMALL_STATE(1243)] = 65560, + [SMALL_STATE(1244)] = 65601, + [SMALL_STATE(1245)] = 65642, + [SMALL_STATE(1246)] = 65683, + [SMALL_STATE(1247)] = 65724, + [SMALL_STATE(1248)] = 65765, + [SMALL_STATE(1249)] = 65802, + [SMALL_STATE(1250)] = 65843, + [SMALL_STATE(1251)] = 65884, + [SMALL_STATE(1252)] = 65925, + [SMALL_STATE(1253)] = 65966, + [SMALL_STATE(1254)] = 66007, + [SMALL_STATE(1255)] = 66048, + [SMALL_STATE(1256)] = 66089, + [SMALL_STATE(1257)] = 66130, + [SMALL_STATE(1258)] = 66171, + [SMALL_STATE(1259)] = 66210, + [SMALL_STATE(1260)] = 66249, + [SMALL_STATE(1261)] = 66290, + [SMALL_STATE(1262)] = 66329, + [SMALL_STATE(1263)] = 66368, + [SMALL_STATE(1264)] = 66409, + [SMALL_STATE(1265)] = 66448, + [SMALL_STATE(1266)] = 66487, + [SMALL_STATE(1267)] = 66526, + [SMALL_STATE(1268)] = 66565, + [SMALL_STATE(1269)] = 66606, + [SMALL_STATE(1270)] = 66647, + [SMALL_STATE(1271)] = 66688, + [SMALL_STATE(1272)] = 66729, + [SMALL_STATE(1273)] = 66770, + [SMALL_STATE(1274)] = 66811, + [SMALL_STATE(1275)] = 66852, + [SMALL_STATE(1276)] = 66893, + [SMALL_STATE(1277)] = 66934, + [SMALL_STATE(1278)] = 66975, + [SMALL_STATE(1279)] = 67016, + [SMALL_STATE(1280)] = 67057, + [SMALL_STATE(1281)] = 67081, + [SMALL_STATE(1282)] = 67105, + [SMALL_STATE(1283)] = 67139, + [SMALL_STATE(1284)] = 67163, + [SMALL_STATE(1285)] = 67197, + [SMALL_STATE(1286)] = 67220, + [SMALL_STATE(1287)] = 67243, + [SMALL_STATE(1288)] = 67268, + [SMALL_STATE(1289)] = 67299, + [SMALL_STATE(1290)] = 67330, + [SMALL_STATE(1291)] = 67358, + [SMALL_STATE(1292)] = 67380, + [SMALL_STATE(1293)] = 67408, + [SMALL_STATE(1294)] = 67436, + [SMALL_STATE(1295)] = 67458, + [SMALL_STATE(1296)] = 67486, + [SMALL_STATE(1297)] = 67514, + [SMALL_STATE(1298)] = 67536, + [SMALL_STATE(1299)] = 67564, + [SMALL_STATE(1300)] = 67592, + [SMALL_STATE(1301)] = 67620, + [SMALL_STATE(1302)] = 67645, + [SMALL_STATE(1303)] = 67670, + [SMALL_STATE(1304)] = 67695, + [SMALL_STATE(1305)] = 67720, + [SMALL_STATE(1306)] = 67745, + [SMALL_STATE(1307)] = 67770, + [SMALL_STATE(1308)] = 67795, + [SMALL_STATE(1309)] = 67820, + [SMALL_STATE(1310)] = 67845, + [SMALL_STATE(1311)] = 67870, + [SMALL_STATE(1312)] = 67895, + [SMALL_STATE(1313)] = 67920, + [SMALL_STATE(1314)] = 67945, + [SMALL_STATE(1315)] = 67970, + [SMALL_STATE(1316)] = 67995, + [SMALL_STATE(1317)] = 68020, + [SMALL_STATE(1318)] = 68045, + [SMALL_STATE(1319)] = 68070, + [SMALL_STATE(1320)] = 68095, + [SMALL_STATE(1321)] = 68120, + [SMALL_STATE(1322)] = 68145, + [SMALL_STATE(1323)] = 68169, + [SMALL_STATE(1324)] = 68193, + [SMALL_STATE(1325)] = 68225, + [SMALL_STATE(1326)] = 68249, + [SMALL_STATE(1327)] = 68281, + [SMALL_STATE(1328)] = 68313, + [SMALL_STATE(1329)] = 68345, + [SMALL_STATE(1330)] = 68377, + [SMALL_STATE(1331)] = 68397, + [SMALL_STATE(1332)] = 68429, + [SMALL_STATE(1333)] = 68461, + [SMALL_STATE(1334)] = 68493, + [SMALL_STATE(1335)] = 68525, + [SMALL_STATE(1336)] = 68557, + [SMALL_STATE(1337)] = 68581, + [SMALL_STATE(1338)] = 68613, + [SMALL_STATE(1339)] = 68645, + [SMALL_STATE(1340)] = 68677, + [SMALL_STATE(1341)] = 68709, + [SMALL_STATE(1342)] = 68741, + [SMALL_STATE(1343)] = 68773, + [SMALL_STATE(1344)] = 68797, + [SMALL_STATE(1345)] = 68829, + [SMALL_STATE(1346)] = 68849, + [SMALL_STATE(1347)] = 68881, + [SMALL_STATE(1348)] = 68913, + [SMALL_STATE(1349)] = 68945, + [SMALL_STATE(1350)] = 68977, + [SMALL_STATE(1351)] = 69009, + [SMALL_STATE(1352)] = 69029, + [SMALL_STATE(1353)] = 69061, + [SMALL_STATE(1354)] = 69093, + [SMALL_STATE(1355)] = 69125, + [SMALL_STATE(1356)] = 69157, + [SMALL_STATE(1357)] = 69181, + [SMALL_STATE(1358)] = 69200, + [SMALL_STATE(1359)] = 69219, + [SMALL_STATE(1360)] = 69238, + [SMALL_STATE(1361)] = 69257, + [SMALL_STATE(1362)] = 69276, + [SMALL_STATE(1363)] = 69295, + [SMALL_STATE(1364)] = 69314, + [SMALL_STATE(1365)] = 69333, + [SMALL_STATE(1366)] = 69360, + [SMALL_STATE(1367)] = 69379, + [SMALL_STATE(1368)] = 69398, + [SMALL_STATE(1369)] = 69417, + [SMALL_STATE(1370)] = 69436, + [SMALL_STATE(1371)] = 69455, + [SMALL_STATE(1372)] = 69474, + [SMALL_STATE(1373)] = 69493, + [SMALL_STATE(1374)] = 69512, + [SMALL_STATE(1375)] = 69538, + [SMALL_STATE(1376)] = 69564, + [SMALL_STATE(1377)] = 69590, + [SMALL_STATE(1378)] = 69616, + [SMALL_STATE(1379)] = 69642, + [SMALL_STATE(1380)] = 69668, + [SMALL_STATE(1381)] = 69694, + [SMALL_STATE(1382)] = 69720, + [SMALL_STATE(1383)] = 69746, + [SMALL_STATE(1384)] = 69772, + [SMALL_STATE(1385)] = 69798, + [SMALL_STATE(1386)] = 69824, + [SMALL_STATE(1387)] = 69850, + [SMALL_STATE(1388)] = 69877, + [SMALL_STATE(1389)] = 69900, + [SMALL_STATE(1390)] = 69927, + [SMALL_STATE(1391)] = 69954, + [SMALL_STATE(1392)] = 69981, + [SMALL_STATE(1393)] = 70008, + [SMALL_STATE(1394)] = 70035, + [SMALL_STATE(1395)] = 70058, + [SMALL_STATE(1396)] = 70085, + [SMALL_STATE(1397)] = 70112, + [SMALL_STATE(1398)] = 70139, + [SMALL_STATE(1399)] = 70166, + [SMALL_STATE(1400)] = 70193, + [SMALL_STATE(1401)] = 70220, + [SMALL_STATE(1402)] = 70247, + [SMALL_STATE(1403)] = 70274, + [SMALL_STATE(1404)] = 70296, + [SMALL_STATE(1405)] = 70320, + [SMALL_STATE(1406)] = 70342, + [SMALL_STATE(1407)] = 70366, + [SMALL_STATE(1408)] = 70388, + [SMALL_STATE(1409)] = 70412, + [SMALL_STATE(1410)] = 70434, + [SMALL_STATE(1411)] = 70456, + [SMALL_STATE(1412)] = 70480, + [SMALL_STATE(1413)] = 70502, + [SMALL_STATE(1414)] = 70524, + [SMALL_STATE(1415)] = 70546, + [SMALL_STATE(1416)] = 70568, + [SMALL_STATE(1417)] = 70590, + [SMALL_STATE(1418)] = 70612, + [SMALL_STATE(1419)] = 70634, + [SMALL_STATE(1420)] = 70656, + [SMALL_STATE(1421)] = 70678, + [SMALL_STATE(1422)] = 70700, + [SMALL_STATE(1423)] = 70724, + [SMALL_STATE(1424)] = 70748, + [SMALL_STATE(1425)] = 70770, + [SMALL_STATE(1426)] = 70794, + [SMALL_STATE(1427)] = 70816, + [SMALL_STATE(1428)] = 70840, + [SMALL_STATE(1429)] = 70862, + [SMALL_STATE(1430)] = 70884, + [SMALL_STATE(1431)] = 70906, + [SMALL_STATE(1432)] = 70928, + [SMALL_STATE(1433)] = 70952, + [SMALL_STATE(1434)] = 70976, + [SMALL_STATE(1435)] = 70998, + [SMALL_STATE(1436)] = 71020, + [SMALL_STATE(1437)] = 71044, + [SMALL_STATE(1438)] = 71066, + [SMALL_STATE(1439)] = 71088, + [SMALL_STATE(1440)] = 71110, + [SMALL_STATE(1441)] = 71134, + [SMALL_STATE(1442)] = 71158, + [SMALL_STATE(1443)] = 71175, + [SMALL_STATE(1444)] = 71196, + [SMALL_STATE(1445)] = 71214, + [SMALL_STATE(1446)] = 71232, + [SMALL_STATE(1447)] = 71250, + [SMALL_STATE(1448)] = 71268, + [SMALL_STATE(1449)] = 71286, + [SMALL_STATE(1450)] = 71304, + [SMALL_STATE(1451)] = 71322, + [SMALL_STATE(1452)] = 71338, + [SMALL_STATE(1453)] = 71354, + [SMALL_STATE(1454)] = 71372, + [SMALL_STATE(1455)] = 71390, + [SMALL_STATE(1456)] = 71408, + [SMALL_STATE(1457)] = 71426, + [SMALL_STATE(1458)] = 71444, + [SMALL_STATE(1459)] = 71462, + [SMALL_STATE(1460)] = 71480, + [SMALL_STATE(1461)] = 71498, + [SMALL_STATE(1462)] = 71514, + [SMALL_STATE(1463)] = 71530, + [SMALL_STATE(1464)] = 71548, + [SMALL_STATE(1465)] = 71566, + [SMALL_STATE(1466)] = 71584, + [SMALL_STATE(1467)] = 71602, + [SMALL_STATE(1468)] = 71620, + [SMALL_STATE(1469)] = 71636, + [SMALL_STATE(1470)] = 71652, + [SMALL_STATE(1471)] = 71670, + [SMALL_STATE(1472)] = 71686, + [SMALL_STATE(1473)] = 71704, + [SMALL_STATE(1474)] = 71722, + [SMALL_STATE(1475)] = 71740, + [SMALL_STATE(1476)] = 71758, + [SMALL_STATE(1477)] = 71776, + [SMALL_STATE(1478)] = 71792, + [SMALL_STATE(1479)] = 71808, + [SMALL_STATE(1480)] = 71826, + [SMALL_STATE(1481)] = 71844, + [SMALL_STATE(1482)] = 71862, + [SMALL_STATE(1483)] = 71880, + [SMALL_STATE(1484)] = 71898, + [SMALL_STATE(1485)] = 71916, + [SMALL_STATE(1486)] = 71934, + [SMALL_STATE(1487)] = 71952, + [SMALL_STATE(1488)] = 71968, + [SMALL_STATE(1489)] = 71984, + [SMALL_STATE(1490)] = 72002, + [SMALL_STATE(1491)] = 72020, + [SMALL_STATE(1492)] = 72038, + [SMALL_STATE(1493)] = 72056, + [SMALL_STATE(1494)] = 72074, + [SMALL_STATE(1495)] = 72092, + [SMALL_STATE(1496)] = 72110, + [SMALL_STATE(1497)] = 72126, + [SMALL_STATE(1498)] = 72144, + [SMALL_STATE(1499)] = 72162, + [SMALL_STATE(1500)] = 72180, + [SMALL_STATE(1501)] = 72198, + [SMALL_STATE(1502)] = 72216, + [SMALL_STATE(1503)] = 72234, + [SMALL_STATE(1504)] = 72252, + [SMALL_STATE(1505)] = 72270, + [SMALL_STATE(1506)] = 72286, + [SMALL_STATE(1507)] = 72302, + [SMALL_STATE(1508)] = 72320, + [SMALL_STATE(1509)] = 72338, + [SMALL_STATE(1510)] = 72356, + [SMALL_STATE(1511)] = 72374, + [SMALL_STATE(1512)] = 72392, + [SMALL_STATE(1513)] = 72410, + [SMALL_STATE(1514)] = 72428, + [SMALL_STATE(1515)] = 72446, + [SMALL_STATE(1516)] = 72462, + [SMALL_STATE(1517)] = 72478, + [SMALL_STATE(1518)] = 72496, + [SMALL_STATE(1519)] = 72514, + [SMALL_STATE(1520)] = 72532, + [SMALL_STATE(1521)] = 72550, + [SMALL_STATE(1522)] = 72568, + [SMALL_STATE(1523)] = 72586, + [SMALL_STATE(1524)] = 72604, + [SMALL_STATE(1525)] = 72622, + [SMALL_STATE(1526)] = 72640, + [SMALL_STATE(1527)] = 72658, + [SMALL_STATE(1528)] = 72676, + [SMALL_STATE(1529)] = 72694, + [SMALL_STATE(1530)] = 72710, + [SMALL_STATE(1531)] = 72726, + [SMALL_STATE(1532)] = 72744, + [SMALL_STATE(1533)] = 72762, + [SMALL_STATE(1534)] = 72778, + [SMALL_STATE(1535)] = 72796, + [SMALL_STATE(1536)] = 72814, + [SMALL_STATE(1537)] = 72832, + [SMALL_STATE(1538)] = 72850, + [SMALL_STATE(1539)] = 72868, + [SMALL_STATE(1540)] = 72886, + [SMALL_STATE(1541)] = 72902, + [SMALL_STATE(1542)] = 72918, + [SMALL_STATE(1543)] = 72936, + [SMALL_STATE(1544)] = 72954, + [SMALL_STATE(1545)] = 72972, + [SMALL_STATE(1546)] = 72990, + [SMALL_STATE(1547)] = 73008, + [SMALL_STATE(1548)] = 73026, + [SMALL_STATE(1549)] = 73044, + [SMALL_STATE(1550)] = 73062, + [SMALL_STATE(1551)] = 73078, + [SMALL_STATE(1552)] = 73094, + [SMALL_STATE(1553)] = 73112, + [SMALL_STATE(1554)] = 73130, + [SMALL_STATE(1555)] = 73148, + [SMALL_STATE(1556)] = 73166, + [SMALL_STATE(1557)] = 73184, + [SMALL_STATE(1558)] = 73202, + [SMALL_STATE(1559)] = 73220, + [SMALL_STATE(1560)] = 73238, + [SMALL_STATE(1561)] = 73256, + [SMALL_STATE(1562)] = 73274, + [SMALL_STATE(1563)] = 73290, + [SMALL_STATE(1564)] = 73306, + [SMALL_STATE(1565)] = 73324, + [SMALL_STATE(1566)] = 73342, + [SMALL_STATE(1567)] = 73360, + [SMALL_STATE(1568)] = 73376, + [SMALL_STATE(1569)] = 73394, + [SMALL_STATE(1570)] = 73412, + [SMALL_STATE(1571)] = 73430, + [SMALL_STATE(1572)] = 73448, + [SMALL_STATE(1573)] = 73466, + [SMALL_STATE(1574)] = 73484, + [SMALL_STATE(1575)] = 73502, + [SMALL_STATE(1576)] = 73518, + [SMALL_STATE(1577)] = 73534, + [SMALL_STATE(1578)] = 73552, + [SMALL_STATE(1579)] = 73570, + [SMALL_STATE(1580)] = 73588, + [SMALL_STATE(1581)] = 73606, + [SMALL_STATE(1582)] = 73624, + [SMALL_STATE(1583)] = 73642, + [SMALL_STATE(1584)] = 73660, + [SMALL_STATE(1585)] = 73678, + [SMALL_STATE(1586)] = 73694, + [SMALL_STATE(1587)] = 73710, + [SMALL_STATE(1588)] = 73728, + [SMALL_STATE(1589)] = 73746, + [SMALL_STATE(1590)] = 73764, + [SMALL_STATE(1591)] = 73782, + [SMALL_STATE(1592)] = 73800, + [SMALL_STATE(1593)] = 73816, + [SMALL_STATE(1594)] = 73832, + [SMALL_STATE(1595)] = 73850, + [SMALL_STATE(1596)] = 73868, + [SMALL_STATE(1597)] = 73884, + [SMALL_STATE(1598)] = 73902, + [SMALL_STATE(1599)] = 73920, + [SMALL_STATE(1600)] = 73938, + [SMALL_STATE(1601)] = 73956, + [SMALL_STATE(1602)] = 73974, + [SMALL_STATE(1603)] = 73990, + [SMALL_STATE(1604)] = 74006, + [SMALL_STATE(1605)] = 74024, + [SMALL_STATE(1606)] = 74042, + [SMALL_STATE(1607)] = 74060, + [SMALL_STATE(1608)] = 74078, + [SMALL_STATE(1609)] = 74096, + [SMALL_STATE(1610)] = 74114, + [SMALL_STATE(1611)] = 74132, + [SMALL_STATE(1612)] = 74150, + [SMALL_STATE(1613)] = 74166, + [SMALL_STATE(1614)] = 74182, + [SMALL_STATE(1615)] = 74198, + [SMALL_STATE(1616)] = 74216, + [SMALL_STATE(1617)] = 74234, + [SMALL_STATE(1618)] = 74252, + [SMALL_STATE(1619)] = 74270, + [SMALL_STATE(1620)] = 74288, + [SMALL_STATE(1621)] = 74302, + [SMALL_STATE(1622)] = 74320, + [SMALL_STATE(1623)] = 74338, + [SMALL_STATE(1624)] = 74356, + [SMALL_STATE(1625)] = 74374, + [SMALL_STATE(1626)] = 74392, + [SMALL_STATE(1627)] = 74410, + [SMALL_STATE(1628)] = 74428, + [SMALL_STATE(1629)] = 74446, + [SMALL_STATE(1630)] = 74464, + [SMALL_STATE(1631)] = 74482, + [SMALL_STATE(1632)] = 74498, + [SMALL_STATE(1633)] = 74514, + [SMALL_STATE(1634)] = 74532, + [SMALL_STATE(1635)] = 74550, + [SMALL_STATE(1636)] = 74568, + [SMALL_STATE(1637)] = 74586, + [SMALL_STATE(1638)] = 74604, + [SMALL_STATE(1639)] = 74622, + [SMALL_STATE(1640)] = 74640, + [SMALL_STATE(1641)] = 74658, + [SMALL_STATE(1642)] = 74676, + [SMALL_STATE(1643)] = 74692, + [SMALL_STATE(1644)] = 74708, + [SMALL_STATE(1645)] = 74726, + [SMALL_STATE(1646)] = 74744, + [SMALL_STATE(1647)] = 74762, + [SMALL_STATE(1648)] = 74780, + [SMALL_STATE(1649)] = 74798, + [SMALL_STATE(1650)] = 74816, + [SMALL_STATE(1651)] = 74834, + [SMALL_STATE(1652)] = 74850, + [SMALL_STATE(1653)] = 74866, + [SMALL_STATE(1654)] = 74884, + [SMALL_STATE(1655)] = 74902, + [SMALL_STATE(1656)] = 74920, + [SMALL_STATE(1657)] = 74938, + [SMALL_STATE(1658)] = 74956, + [SMALL_STATE(1659)] = 74974, + [SMALL_STATE(1660)] = 74992, + [SMALL_STATE(1661)] = 75008, + [SMALL_STATE(1662)] = 75026, + [SMALL_STATE(1663)] = 75044, + [SMALL_STATE(1664)] = 75062, + [SMALL_STATE(1665)] = 75080, + [SMALL_STATE(1666)] = 75098, + [SMALL_STATE(1667)] = 75116, + [SMALL_STATE(1668)] = 75134, + [SMALL_STATE(1669)] = 75150, + [SMALL_STATE(1670)] = 75166, + [SMALL_STATE(1671)] = 75184, + [SMALL_STATE(1672)] = 75202, + [SMALL_STATE(1673)] = 75220, + [SMALL_STATE(1674)] = 75238, + [SMALL_STATE(1675)] = 75256, + [SMALL_STATE(1676)] = 75274, + [SMALL_STATE(1677)] = 75292, + [SMALL_STATE(1678)] = 75310, + [SMALL_STATE(1679)] = 75326, + [SMALL_STATE(1680)] = 75342, + [SMALL_STATE(1681)] = 75360, + [SMALL_STATE(1682)] = 75378, + [SMALL_STATE(1683)] = 75396, + [SMALL_STATE(1684)] = 75414, + [SMALL_STATE(1685)] = 75432, + [SMALL_STATE(1686)] = 75448, + [SMALL_STATE(1687)] = 75464, + [SMALL_STATE(1688)] = 75482, + [SMALL_STATE(1689)] = 75498, + [SMALL_STATE(1690)] = 75514, + [SMALL_STATE(1691)] = 75528, + [SMALL_STATE(1692)] = 75542, + [SMALL_STATE(1693)] = 75556, + [SMALL_STATE(1694)] = 75572, + [SMALL_STATE(1695)] = 75588, + [SMALL_STATE(1696)] = 75606, + [SMALL_STATE(1697)] = 75624, + [SMALL_STATE(1698)] = 75642, + [SMALL_STATE(1699)] = 75660, + [SMALL_STATE(1700)] = 75678, + [SMALL_STATE(1701)] = 75696, + [SMALL_STATE(1702)] = 75710, + [SMALL_STATE(1703)] = 75724, + [SMALL_STATE(1704)] = 75738, + [SMALL_STATE(1705)] = 75756, + [SMALL_STATE(1706)] = 75770, + [SMALL_STATE(1707)] = 75784, + [SMALL_STATE(1708)] = 75798, + [SMALL_STATE(1709)] = 75816, + [SMALL_STATE(1710)] = 75834, + [SMALL_STATE(1711)] = 75852, + [SMALL_STATE(1712)] = 75866, + [SMALL_STATE(1713)] = 75880, + [SMALL_STATE(1714)] = 75894, + [SMALL_STATE(1715)] = 75912, + [SMALL_STATE(1716)] = 75930, + [SMALL_STATE(1717)] = 75944, + [SMALL_STATE(1718)] = 75958, + [SMALL_STATE(1719)] = 75972, + [SMALL_STATE(1720)] = 75990, + [SMALL_STATE(1721)] = 76008, + [SMALL_STATE(1722)] = 76026, + [SMALL_STATE(1723)] = 76044, + [SMALL_STATE(1724)] = 76062, + [SMALL_STATE(1725)] = 76080, + [SMALL_STATE(1726)] = 76098, + [SMALL_STATE(1727)] = 76112, + [SMALL_STATE(1728)] = 76126, + [SMALL_STATE(1729)] = 76140, + [SMALL_STATE(1730)] = 76158, + [SMALL_STATE(1731)] = 76174, + [SMALL_STATE(1732)] = 76190, + [SMALL_STATE(1733)] = 76208, + [SMALL_STATE(1734)] = 76226, + [SMALL_STATE(1735)] = 76244, + [SMALL_STATE(1736)] = 76262, + [SMALL_STATE(1737)] = 76276, + [SMALL_STATE(1738)] = 76290, + [SMALL_STATE(1739)] = 76304, + [SMALL_STATE(1740)] = 76322, + [SMALL_STATE(1741)] = 76340, + [SMALL_STATE(1742)] = 76358, + [SMALL_STATE(1743)] = 76376, + [SMALL_STATE(1744)] = 76394, + [SMALL_STATE(1745)] = 76412, + [SMALL_STATE(1746)] = 76426, + [SMALL_STATE(1747)] = 76440, + [SMALL_STATE(1748)] = 76454, + [SMALL_STATE(1749)] = 76470, + [SMALL_STATE(1750)] = 76486, + [SMALL_STATE(1751)] = 76504, + [SMALL_STATE(1752)] = 76522, + [SMALL_STATE(1753)] = 76540, + [SMALL_STATE(1754)] = 76558, + [SMALL_STATE(1755)] = 76572, + [SMALL_STATE(1756)] = 76586, + [SMALL_STATE(1757)] = 76600, + [SMALL_STATE(1758)] = 76618, + [SMALL_STATE(1759)] = 76636, + [SMALL_STATE(1760)] = 76652, + [SMALL_STATE(1761)] = 76668, + [SMALL_STATE(1762)] = 76684, + [SMALL_STATE(1763)] = 76702, + [SMALL_STATE(1764)] = 76716, + [SMALL_STATE(1765)] = 76730, + [SMALL_STATE(1766)] = 76744, + [SMALL_STATE(1767)] = 76762, + [SMALL_STATE(1768)] = 76780, + [SMALL_STATE(1769)] = 76798, + [SMALL_STATE(1770)] = 76812, + [SMALL_STATE(1771)] = 76826, + [SMALL_STATE(1772)] = 76840, + [SMALL_STATE(1773)] = 76858, + [SMALL_STATE(1774)] = 76876, + [SMALL_STATE(1775)] = 76894, + [SMALL_STATE(1776)] = 76912, + [SMALL_STATE(1777)] = 76930, + [SMALL_STATE(1778)] = 76948, + [SMALL_STATE(1779)] = 76962, + [SMALL_STATE(1780)] = 76976, + [SMALL_STATE(1781)] = 76990, + [SMALL_STATE(1782)] = 77008, + [SMALL_STATE(1783)] = 77026, + [SMALL_STATE(1784)] = 77044, + [SMALL_STATE(1785)] = 77062, + [SMALL_STATE(1786)] = 77080, + [SMALL_STATE(1787)] = 77098, + [SMALL_STATE(1788)] = 77116, + [SMALL_STATE(1789)] = 77134, + [SMALL_STATE(1790)] = 77152, + [SMALL_STATE(1791)] = 77170, + [SMALL_STATE(1792)] = 77188, + [SMALL_STATE(1793)] = 77206, + [SMALL_STATE(1794)] = 77222, + [SMALL_STATE(1795)] = 77238, + [SMALL_STATE(1796)] = 77254, + [SMALL_STATE(1797)] = 77272, + [SMALL_STATE(1798)] = 77290, + [SMALL_STATE(1799)] = 77308, + [SMALL_STATE(1800)] = 77326, + [SMALL_STATE(1801)] = 77342, + [SMALL_STATE(1802)] = 77360, + [SMALL_STATE(1803)] = 77378, + [SMALL_STATE(1804)] = 77396, + [SMALL_STATE(1805)] = 77414, + [SMALL_STATE(1806)] = 77432, + [SMALL_STATE(1807)] = 77450, + [SMALL_STATE(1808)] = 77468, + [SMALL_STATE(1809)] = 77486, + [SMALL_STATE(1810)] = 77502, + [SMALL_STATE(1811)] = 77518, + [SMALL_STATE(1812)] = 77534, + [SMALL_STATE(1813)] = 77548, + [SMALL_STATE(1814)] = 77566, + [SMALL_STATE(1815)] = 77584, + [SMALL_STATE(1816)] = 77602, + [SMALL_STATE(1817)] = 77620, + [SMALL_STATE(1818)] = 77638, + [SMALL_STATE(1819)] = 77656, + [SMALL_STATE(1820)] = 77674, + [SMALL_STATE(1821)] = 77690, + [SMALL_STATE(1822)] = 77708, + [SMALL_STATE(1823)] = 77722, + [SMALL_STATE(1824)] = 77740, + [SMALL_STATE(1825)] = 77758, + [SMALL_STATE(1826)] = 77776, + [SMALL_STATE(1827)] = 77794, + [SMALL_STATE(1828)] = 77812, + [SMALL_STATE(1829)] = 77830, + [SMALL_STATE(1830)] = 77848, + [SMALL_STATE(1831)] = 77866, + [SMALL_STATE(1832)] = 77881, + [SMALL_STATE(1833)] = 77896, + [SMALL_STATE(1834)] = 77907, + [SMALL_STATE(1835)] = 77922, + [SMALL_STATE(1836)] = 77937, + [SMALL_STATE(1837)] = 77948, + [SMALL_STATE(1838)] = 77961, + [SMALL_STATE(1839)] = 77976, + [SMALL_STATE(1840)] = 77991, + [SMALL_STATE(1841)] = 78006, + [SMALL_STATE(1842)] = 78021, + [SMALL_STATE(1843)] = 78036, + [SMALL_STATE(1844)] = 78051, + [SMALL_STATE(1845)] = 78066, + [SMALL_STATE(1846)] = 78081, + [SMALL_STATE(1847)] = 78096, + [SMALL_STATE(1848)] = 78111, + [SMALL_STATE(1849)] = 78126, + [SMALL_STATE(1850)] = 78141, + [SMALL_STATE(1851)] = 78156, + [SMALL_STATE(1852)] = 78167, + [SMALL_STATE(1853)] = 78182, + [SMALL_STATE(1854)] = 78197, + [SMALL_STATE(1855)] = 78212, + [SMALL_STATE(1856)] = 78227, + [SMALL_STATE(1857)] = 78238, + [SMALL_STATE(1858)] = 78253, + [SMALL_STATE(1859)] = 78268, + [SMALL_STATE(1860)] = 78279, + [SMALL_STATE(1861)] = 78294, + [SMALL_STATE(1862)] = 78309, + [SMALL_STATE(1863)] = 78324, + [SMALL_STATE(1864)] = 78336, + [SMALL_STATE(1865)] = 78346, + [SMALL_STATE(1866)] = 78358, + [SMALL_STATE(1867)] = 78370, + [SMALL_STATE(1868)] = 78382, + [SMALL_STATE(1869)] = 78394, + [SMALL_STATE(1870)] = 78406, + [SMALL_STATE(1871)] = 78418, + [SMALL_STATE(1872)] = 78430, + [SMALL_STATE(1873)] = 78442, + [SMALL_STATE(1874)] = 78454, + [SMALL_STATE(1875)] = 78466, + [SMALL_STATE(1876)] = 78476, + [SMALL_STATE(1877)] = 78488, + [SMALL_STATE(1878)] = 78500, + [SMALL_STATE(1879)] = 78512, + [SMALL_STATE(1880)] = 78524, + [SMALL_STATE(1881)] = 78536, + [SMALL_STATE(1882)] = 78546, + [SMALL_STATE(1883)] = 78558, + [SMALL_STATE(1884)] = 78568, + [SMALL_STATE(1885)] = 78580, + [SMALL_STATE(1886)] = 78592, + [SMALL_STATE(1887)] = 78604, + [SMALL_STATE(1888)] = 78616, + [SMALL_STATE(1889)] = 78628, + [SMALL_STATE(1890)] = 78640, + [SMALL_STATE(1891)] = 78652, + [SMALL_STATE(1892)] = 78664, + [SMALL_STATE(1893)] = 78676, + [SMALL_STATE(1894)] = 78688, + [SMALL_STATE(1895)] = 78700, + [SMALL_STATE(1896)] = 78710, + [SMALL_STATE(1897)] = 78722, + [SMALL_STATE(1898)] = 78734, + [SMALL_STATE(1899)] = 78746, + [SMALL_STATE(1900)] = 78758, + [SMALL_STATE(1901)] = 78770, + [SMALL_STATE(1902)] = 78782, + [SMALL_STATE(1903)] = 78794, + [SMALL_STATE(1904)] = 78806, + [SMALL_STATE(1905)] = 78815, + [SMALL_STATE(1906)] = 78824, + [SMALL_STATE(1907)] = 78833, + [SMALL_STATE(1908)] = 78842, + [SMALL_STATE(1909)] = 78851, + [SMALL_STATE(1910)] = 78860, + [SMALL_STATE(1911)] = 78869, + [SMALL_STATE(1912)] = 78878, + [SMALL_STATE(1913)] = 78887, + [SMALL_STATE(1914)] = 78896, + [SMALL_STATE(1915)] = 78905, + [SMALL_STATE(1916)] = 78914, + [SMALL_STATE(1917)] = 78923, + [SMALL_STATE(1918)] = 78932, + [SMALL_STATE(1919)] = 78941, + [SMALL_STATE(1920)] = 78950, + [SMALL_STATE(1921)] = 78959, + [SMALL_STATE(1922)] = 78968, + [SMALL_STATE(1923)] = 78977, + [SMALL_STATE(1924)] = 78986, + [SMALL_STATE(1925)] = 78995, + [SMALL_STATE(1926)] = 79004, + [SMALL_STATE(1927)] = 79013, + [SMALL_STATE(1928)] = 79022, + [SMALL_STATE(1929)] = 79031, + [SMALL_STATE(1930)] = 79040, + [SMALL_STATE(1931)] = 79049, + [SMALL_STATE(1932)] = 79058, + [SMALL_STATE(1933)] = 79067, + [SMALL_STATE(1934)] = 79076, + [SMALL_STATE(1935)] = 79085, + [SMALL_STATE(1936)] = 79094, + [SMALL_STATE(1937)] = 79103, + [SMALL_STATE(1938)] = 79112, + [SMALL_STATE(1939)] = 79121, + [SMALL_STATE(1940)] = 79130, + [SMALL_STATE(1941)] = 79139, + [SMALL_STATE(1942)] = 79148, + [SMALL_STATE(1943)] = 79157, + [SMALL_STATE(1944)] = 79166, + [SMALL_STATE(1945)] = 79175, + [SMALL_STATE(1946)] = 79184, + [SMALL_STATE(1947)] = 79193, + [SMALL_STATE(1948)] = 79202, + [SMALL_STATE(1949)] = 79211, + [SMALL_STATE(1950)] = 79220, + [SMALL_STATE(1951)] = 79229, + [SMALL_STATE(1952)] = 79238, + [SMALL_STATE(1953)] = 79247, + [SMALL_STATE(1954)] = 79256, + [SMALL_STATE(1955)] = 79265, + [SMALL_STATE(1956)] = 79274, + [SMALL_STATE(1957)] = 79283, + [SMALL_STATE(1958)] = 79292, + [SMALL_STATE(1959)] = 79301, + [SMALL_STATE(1960)] = 79310, + [SMALL_STATE(1961)] = 79319, + [SMALL_STATE(1962)] = 79328, + [SMALL_STATE(1963)] = 79337, + [SMALL_STATE(1964)] = 79346, + [SMALL_STATE(1965)] = 79355, + [SMALL_STATE(1966)] = 79364, + [SMALL_STATE(1967)] = 79373, + [SMALL_STATE(1968)] = 79382, + [SMALL_STATE(1969)] = 79391, + [SMALL_STATE(1970)] = 79400, + [SMALL_STATE(1971)] = 79409, + [SMALL_STATE(1972)] = 79418, + [SMALL_STATE(1973)] = 79427, + [SMALL_STATE(1974)] = 79436, + [SMALL_STATE(1975)] = 79445, + [SMALL_STATE(1976)] = 79454, + [SMALL_STATE(1977)] = 79463, + [SMALL_STATE(1978)] = 79472, + [SMALL_STATE(1979)] = 79481, + [SMALL_STATE(1980)] = 79490, + [SMALL_STATE(1981)] = 79499, + [SMALL_STATE(1982)] = 79508, + [SMALL_STATE(1983)] = 79517, + [SMALL_STATE(1984)] = 79526, + [SMALL_STATE(1985)] = 79535, + [SMALL_STATE(1986)] = 79544, + [SMALL_STATE(1987)] = 79553, + [SMALL_STATE(1988)] = 79562, + [SMALL_STATE(1989)] = 79571, + [SMALL_STATE(1990)] = 79580, + [SMALL_STATE(1991)] = 79589, + [SMALL_STATE(1992)] = 79598, + [SMALL_STATE(1993)] = 79607, + [SMALL_STATE(1994)] = 79616, + [SMALL_STATE(1995)] = 79625, + [SMALL_STATE(1996)] = 79634, + [SMALL_STATE(1997)] = 79643, + [SMALL_STATE(1998)] = 79652, + [SMALL_STATE(1999)] = 79661, + [SMALL_STATE(2000)] = 79670, + [SMALL_STATE(2001)] = 79679, + [SMALL_STATE(2002)] = 79688, + [SMALL_STATE(2003)] = 79697, + [SMALL_STATE(2004)] = 79706, + [SMALL_STATE(2005)] = 79715, + [SMALL_STATE(2006)] = 79724, + [SMALL_STATE(2007)] = 79733, + [SMALL_STATE(2008)] = 79742, + [SMALL_STATE(2009)] = 79751, + [SMALL_STATE(2010)] = 79760, + [SMALL_STATE(2011)] = 79769, + [SMALL_STATE(2012)] = 79778, + [SMALL_STATE(2013)] = 79787, + [SMALL_STATE(2014)] = 79796, + [SMALL_STATE(2015)] = 79805, + [SMALL_STATE(2016)] = 79814, + [SMALL_STATE(2017)] = 79823, + [SMALL_STATE(2018)] = 79832, + [SMALL_STATE(2019)] = 79841, + [SMALL_STATE(2020)] = 79850, + [SMALL_STATE(2021)] = 79859, + [SMALL_STATE(2022)] = 79868, + [SMALL_STATE(2023)] = 79877, + [SMALL_STATE(2024)] = 79886, + [SMALL_STATE(2025)] = 79895, + [SMALL_STATE(2026)] = 79904, + [SMALL_STATE(2027)] = 79913, + [SMALL_STATE(2028)] = 79922, + [SMALL_STATE(2029)] = 79931, + [SMALL_STATE(2030)] = 79940, + [SMALL_STATE(2031)] = 79949, + [SMALL_STATE(2032)] = 79958, + [SMALL_STATE(2033)] = 79967, + [SMALL_STATE(2034)] = 79976, + [SMALL_STATE(2035)] = 79985, + [SMALL_STATE(2036)] = 79994, + [SMALL_STATE(2037)] = 80003, + [SMALL_STATE(2038)] = 80012, + [SMALL_STATE(2039)] = 80021, + [SMALL_STATE(2040)] = 80030, + [SMALL_STATE(2041)] = 80039, + [SMALL_STATE(2042)] = 80048, + [SMALL_STATE(2043)] = 80057, + [SMALL_STATE(2044)] = 80066, + [SMALL_STATE(2045)] = 80075, + [SMALL_STATE(2046)] = 80084, + [SMALL_STATE(2047)] = 80093, + [SMALL_STATE(2048)] = 80102, + [SMALL_STATE(2049)] = 80111, + [SMALL_STATE(2050)] = 80120, + [SMALL_STATE(2051)] = 80129, + [SMALL_STATE(2052)] = 80138, + [SMALL_STATE(2053)] = 80147, + [SMALL_STATE(2054)] = 80156, + [SMALL_STATE(2055)] = 80165, + [SMALL_STATE(2056)] = 80174, + [SMALL_STATE(2057)] = 80183, + [SMALL_STATE(2058)] = 80192, + [SMALL_STATE(2059)] = 80201, + [SMALL_STATE(2060)] = 80210, + [SMALL_STATE(2061)] = 80219, + [SMALL_STATE(2062)] = 80228, + [SMALL_STATE(2063)] = 80237, + [SMALL_STATE(2064)] = 80246, + [SMALL_STATE(2065)] = 80255, + [SMALL_STATE(2066)] = 80264, + [SMALL_STATE(2067)] = 80273, + [SMALL_STATE(2068)] = 80282, + [SMALL_STATE(2069)] = 80291, + [SMALL_STATE(2070)] = 80300, + [SMALL_STATE(2071)] = 80309, + [SMALL_STATE(2072)] = 80318, + [SMALL_STATE(2073)] = 80327, + [SMALL_STATE(2074)] = 80336, + [SMALL_STATE(2075)] = 80345, + [SMALL_STATE(2076)] = 80354, + [SMALL_STATE(2077)] = 80363, + [SMALL_STATE(2078)] = 80372, + [SMALL_STATE(2079)] = 80381, + [SMALL_STATE(2080)] = 80390, + [SMALL_STATE(2081)] = 80399, + [SMALL_STATE(2082)] = 80408, + [SMALL_STATE(2083)] = 80417, + [SMALL_STATE(2084)] = 80426, + [SMALL_STATE(2085)] = 80435, + [SMALL_STATE(2086)] = 80444, + [SMALL_STATE(2087)] = 80453, + [SMALL_STATE(2088)] = 80462, + [SMALL_STATE(2089)] = 80471, + [SMALL_STATE(2090)] = 80480, + [SMALL_STATE(2091)] = 80489, + [SMALL_STATE(2092)] = 80498, + [SMALL_STATE(2093)] = 80507, + [SMALL_STATE(2094)] = 80516, + [SMALL_STATE(2095)] = 80525, + [SMALL_STATE(2096)] = 80534, + [SMALL_STATE(2097)] = 80543, + [SMALL_STATE(2098)] = 80552, + [SMALL_STATE(2099)] = 80561, + [SMALL_STATE(2100)] = 80570, + [SMALL_STATE(2101)] = 80579, + [SMALL_STATE(2102)] = 80588, + [SMALL_STATE(2103)] = 80597, + [SMALL_STATE(2104)] = 80606, + [SMALL_STATE(2105)] = 80615, + [SMALL_STATE(2106)] = 80624, + [SMALL_STATE(2107)] = 80633, + [SMALL_STATE(2108)] = 80642, + [SMALL_STATE(2109)] = 80651, + [SMALL_STATE(2110)] = 80660, + [SMALL_STATE(2111)] = 80669, + [SMALL_STATE(2112)] = 80678, + [SMALL_STATE(2113)] = 80687, + [SMALL_STATE(2114)] = 80696, + [SMALL_STATE(2115)] = 80705, + [SMALL_STATE(2116)] = 80714, + [SMALL_STATE(2117)] = 80723, + [SMALL_STATE(2118)] = 80732, + [SMALL_STATE(2119)] = 80741, + [SMALL_STATE(2120)] = 80750, + [SMALL_STATE(2121)] = 80759, + [SMALL_STATE(2122)] = 80768, + [SMALL_STATE(2123)] = 80777, + [SMALL_STATE(2124)] = 80786, + [SMALL_STATE(2125)] = 80795, + [SMALL_STATE(2126)] = 80804, + [SMALL_STATE(2127)] = 80813, + [SMALL_STATE(2128)] = 80822, + [SMALL_STATE(2129)] = 80831, + [SMALL_STATE(2130)] = 80840, + [SMALL_STATE(2131)] = 80849, + [SMALL_STATE(2132)] = 80858, + [SMALL_STATE(2133)] = 80867, + [SMALL_STATE(2134)] = 80876, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -69578,2028 +78235,2296 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1639), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(958), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif_clause, 3, 0, 0), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(412), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1461), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1434), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1435), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1436), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1437), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1792), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(982), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(983), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1878), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(984), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(226), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1234), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1531), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1538), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1566), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(415), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(465), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif_clause, 4, 0, 0), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 0), SHIFT(1792), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 0), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 0), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 0), SHIFT(1566), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(416), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1331), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1307), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1309), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1310), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(955), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(956), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1874), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(957), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(218), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1242), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1534), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(417), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(418), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_item, 2, 0, 0), SHIFT(1792), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 2, 0, 0), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 2, 0, 0), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_item, 2, 0, 0), SHIFT(1566), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(776), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1250), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1632), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1633), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1634), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1635), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(924), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(925), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(926), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(208), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1231), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1490), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(777), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(789), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(882), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1458), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1251), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1356), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1357), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1358), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(931), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(932), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1870), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(933), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(210), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1500), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(519), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(520), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(668), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1549), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1459), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1462), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1493), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(937), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(938), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1871), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(939), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(212), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1510), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(669), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(670), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(750), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1600), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1248), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1551), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1552), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1553), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1554), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(883), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1006), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1872), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(944), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(214), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1237), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1520), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(755), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(763), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(809), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1306), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1244), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1602), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1603), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1605), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1607), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(948), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(949), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1873), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(950), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(216), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1240), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1526), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(810), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(811), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(506), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1367), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1333), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1334), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(962), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(964), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(220), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1239), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1541), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(507), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(508), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(550), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1404), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1249), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1369), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1370), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1371), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1372), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(969), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(970), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1876), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(971), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(222), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1238), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1546), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(551), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(552), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(600), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1432), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1406), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1407), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1408), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(976), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(977), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1877), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(978), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(224), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1555), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(601), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(602), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1483), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1246), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1463), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1464), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1465), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1466), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(989), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(990), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1879), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(991), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(228), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1233), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1575), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(696), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat2, 2, 0, 0), SHIFT_REPEAT(697), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1359), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1360), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(235), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_identifier, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_identifier, 2, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1359), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1360), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(235), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1359), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1360), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(238), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1337), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1338), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(241), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1337), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1338), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(241), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1467), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1468), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(248), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1467), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1468), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(248), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1337), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1338), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(242), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 1, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1467), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1468), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(247), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1608), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1615), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(280), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1558), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1559), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(273), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1311), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1312), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(291), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1608), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1615), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(280), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1311), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1312), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(291), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1550), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1574), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(286), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1484), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1485), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(290), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1550), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1574), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(286), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1494), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1495), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(277), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1494), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1495), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(277), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1409), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1410), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(274), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1373), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1374), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(288), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1373), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1374), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(288), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1438), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1439), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(281), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1438), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1439), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(281), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1558), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1559), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(273), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1409), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1410), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(274), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1484), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1485), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(290), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1558), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1559), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(272), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1409), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1410), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(278), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1494), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1495), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(285), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1608), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1615), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(287), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1438), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1439), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(283), - [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1550), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1574), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(289), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1373), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1374), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(271), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1484), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1485), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(279), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1311), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1312), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_retain_declaration, 4, 0, 0), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_retain_declaration, 4, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 0), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_retain_declaration, 2, 0, 0), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_retain_declaration, 2, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 0), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(326), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 11, 0, 2), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 11, 0, 2), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 11, 0, 2), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 11, 0, 2), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 5, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 5, 0, 0), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_non_retain_declaration, 4, 0, 0), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_non_retain_declaration, 4, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 11, 0, 2), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 11, 0, 2), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 6, 0, 2), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 6, 0, 2), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 12, 0, 2), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 12, 0, 2), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 12, 0, 2), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 12, 0, 2), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 6, 0, 2), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 6, 0, 2), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 12, 0, 2), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 12, 0, 2), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 13, 0, 2), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 13, 0, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 13, 0, 2), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 13, 0, 2), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 13, 0, 2), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 13, 0, 2), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 2), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, 0, 2), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 14, 0, 2), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 14, 0, 2), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 15, 0, 2), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 15, 0, 2), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 0), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_temp_declaration, 2, 0, 0), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_temp_declaration, 2, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(344), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 6, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 6, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 7, 0, 2), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 7, 0, 2), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_non_retain_declaration, 2, 0, 0), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_non_retain_declaration, 2, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 7, 0, 2), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 7, 0, 2), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 2), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, 0, 2), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 2), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 10, 0, 2), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 0), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(294), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_constant_declaration, 2, 0, 0), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_constant_declaration, 2, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 0), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 8, 0, 2), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 8, 0, 2), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_fb_call, 3, 0, 1), REDUCE(sym_function_call, 3, 0, 0), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_fb_call, 3, 0, 1), REDUCE(sym_function_call, 3, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 8, 0, 2), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 8, 0, 2), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 4, 0, 2), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 4, 0, 2), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 2), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, 0, 2), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_call, 4, 0, 1), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fb_call, 4, 0, 1), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 3), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, 0, 3), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 9, 0, 2), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 9, 0, 2), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 5, 0, 2), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 5, 0, 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_call, 3, 0, 1), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fb_call, 3, 0, 1), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 9, 0, 2), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 9, 0, 2), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_constant_declaration, 3, 0, 0), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_constant_declaration, 3, 0, 0), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_retain_declaration, 3, 0, 0), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_retain_declaration, 3, 0, 0), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_non_retain_declaration, 3, 0, 0), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_non_retain_declaration, 3, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 2), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 2), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 5, 0, 2), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 5, 0, 2), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 2), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, 0, 2), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 4, 0, 2), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 4, 0, 2), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 10, 0, 2), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 10, 0, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 2), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 2), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 10, 0, 2), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 10, 0, 2), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_constant_declaration, 4, 0, 0), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_constant_declaration, 4, 0, 0), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_temp_declaration, 3, 0, 0), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_temp_declaration, 3, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(486), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(443), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(447), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(473), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(483), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(437), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(497), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(504), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(512), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(535), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(541), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(545), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(583), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(585), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(591), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(595), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(630), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(635), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(641), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(645), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(653), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(707), - [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(715), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(724), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(729), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(735), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(739), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(794), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(800), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(804), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(844), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(850), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(854), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_fb_parameter, 3, 0, 5), REDUCE(sym_parameter, 3, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter, 3, 0, 5), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 8, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 8, 0, 0), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(986), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_declaration_repeat1, 2, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_var_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1586), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fb_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fb_parameter_list_repeat1, 2, 0, 0), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1, 0, 0), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 0), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter_list, 1, 0, 0), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter_list, 2, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 4, 0, 4), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 4, 0, 4), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 6, 0, 4), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 6, 0, 4), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 7, 0, 6), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 7, 0, 6), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 5, 0, 6), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 5, 0, 6), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4257] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 0), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_item, 2, 0, 0), SHIFT(2011), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 2, 0, 0), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 2, 0, 0), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_item, 2, 0, 0), SHIFT(1769), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1378), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1503), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif_clause, 3, 0, 0), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 0), SHIFT(2011), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 0), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 0), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 0), SHIFT(1769), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif_clause, 4, 0, 0), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1472), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1536), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2133), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_block_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1651), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1652), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(270), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1651), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1652), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(270), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1651), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1652), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(269), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_identifier, 2, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_identifier, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1540), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1541), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(278), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1540), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1541), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(278), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1668), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1669), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(281), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1668), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1669), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(281), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1540), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1541), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(280), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1668), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1669), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(279), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 1, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue, 1, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1575), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1576), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(411), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1631), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1632), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(416), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1631), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1632), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(416), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 6, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 6, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1505), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1506), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(424), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1685), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1686), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(421), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1685), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1686), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(421), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 2), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, 0, 2), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 4, 0, 2), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 4, 0, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 7, 0, 2), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 7, 0, 2), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_constant_declaration, 2, 0, 0), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_constant_declaration, 2, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 7, 0, 2), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 7, 0, 2), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_retain_declaration, 2, 0, 0), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_retain_declaration, 2, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 2), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 7, 0, 2), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 7, 0, 2), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_non_retain_declaration, 2, 0, 0), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_non_retain_declaration, 2, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, 0, 2), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_non_retain_declaration, 4, 0, 0), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_non_retain_declaration, 4, 0, 0), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_retain_declaration, 4, 0, 0), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_retain_declaration, 4, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_constant_declaration, 4, 0, 0), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), REDUCE(sym_var_constant_declaration, 4, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, 0, 2), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, 0, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 8, 0, 2), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 8, 0, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 8, 0, 2), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 8, 0, 2), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 0), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 8, 0, 2), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 8, 0, 2), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_non_retain_declaration, 3, 0, 0), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_non_retain_declaration, 3, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 2), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, 0, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, 0, 2), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, 0, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 9, 0, 2), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 9, 0, 2), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 0), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(360), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 9, 0, 2), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 9, 0, 2), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 0), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_retain_declaration, 3, 0, 0), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_retain_declaration, 3, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 9, 0, 2), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 9, 0, 2), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4, 0, 0), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 2), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, 0, 2), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1575), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1576), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(411), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_call, 4, 0, 1), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fb_call, 4, 0, 1), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, 0, 2), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, 0, 2), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 10, 0, 2), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 10, 0, 2), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 3), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, 0, 3), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 10, 0, 2), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 10, 0, 2), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 2), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 2), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 10, 0, 2), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 10, 0, 2), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 5, 0, 2), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 5, 0, 2), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_constant_declaration, 3, 0, 0), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_constant_declaration, 3, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 2), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 10, 0, 2), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_temp_declaration, 3, 0, 0), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 3, 0, 0), REDUCE(sym_var_temp_declaration, 3, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 5, 0, 2), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 5, 0, 2), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, 0, 2), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, 0, 2), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(308), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 5, 0, 2), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 5, 0, 2), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 11, 0, 2), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 11, 0, 2), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_temp_declaration, 2, 0, 0), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var_declaration, 2, 0, 0), REDUCE(sym_var_temp_declaration, 2, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 11, 0, 2), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 11, 0, 2), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 2), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 2), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 11, 0, 2), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 11, 0, 2), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 12, 0, 2), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 12, 0, 2), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 12, 0, 2), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 12, 0, 2), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 12, 0, 2), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 12, 0, 2), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(392), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 12, 0, 2), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 12, 0, 2), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 12, 0, 2), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 12, 0, 2), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_region_statement, 5, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_region_statement, 5, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 13, 0, 2), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 13, 0, 2), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 13, 0, 2), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 13, 0, 2), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 2), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 2), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 13, 0, 2), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 13, 0, 2), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 13, 0, 2), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 13, 0, 2), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 13, 0, 2), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 13, 0, 2), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_fb_call, 3, 0, 1), REDUCE(sym_function_call, 3, 0, 0), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_fb_call, 3, 0, 1), REDUCE(sym_function_call, 3, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 6, 0, 2), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 6, 0, 2), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 14, 0, 2), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 14, 0, 2), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 14, 0, 2), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 14, 0, 2), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1602), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1603), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(414), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 15, 0, 2), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 15, 0, 2), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_call, 3, 0, 1), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fb_call, 3, 0, 1), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1730), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1731), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(408), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 6, 0, 2), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 6, 0, 2), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1730), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1731), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(408), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_block, 6, 0, 2), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_block, 6, 0, 2), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1529), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1530), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(407), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1529), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1530), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(407), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1602), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1603), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(414), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 4, 0, 2), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 4, 0, 2), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1793), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1795), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(412), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1793), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1795), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(412), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1451), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1452), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(415), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1451), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1452), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(415), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 2), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, 0, 2), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1477), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1478), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(419), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1477), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(1478), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 4, 0, 0), SHIFT(419), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_organization_block, 4, 0, 2), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_organization_block, 4, 0, 2), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1505), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(1506), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_statement, 3, 0, 0), SHIFT(424), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_block, 11, 0, 2), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_block, 11, 0, 2), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1529), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1530), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(403), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1730), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1731), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(410), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1575), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1576), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(409), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1793), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1795), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(413), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1602), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1603), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(425), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1451), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1452), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(417), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1631), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1632), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(423), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1477), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1478), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(422), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1685), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1686), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(404), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1631), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1505), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(1506), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_region_name, 1, 0, 0), SHIFT(426), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_region_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(453), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(457), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(463), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(466), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(529), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(442), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(575), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(581), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(585), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(648), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(618), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(624), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(627), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(692), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(668), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(674), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(678), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(701), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(719), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(725), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(729), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(784), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(791), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(795), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(813), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(819), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(823), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(870), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(876), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(880), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(921), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(927), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(931), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), SHIFT(971), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(977), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(981), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_fb_parameter, 3, 0, 5), REDUCE(sym_parameter, 3, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter, 3, 0, 5), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 8, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 8, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_organization_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 4, 0, 0), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 4, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1612), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 0), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fb_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fb_parameter_list_repeat1, 2, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter_list, 1, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fb_parameter_list, 2, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 7, 0, 6), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 7, 0, 6), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 4, 0, 4), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 4, 0, 4), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 6, 0, 4), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 6, 0, 4), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_item, 5, 0, 6), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_item, 5, 0, 6), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4829] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), }; #ifdef __cplusplus